How can I create a control that doesn't get focus? I remember in VB 6 you could just set CanGetFocus property to false. Anything like that in C#?
Control that can't get focus
Started by Blaze, Aug 11 2006 03:10 PM
4 replies to this topic
#1
Posted 11 August 2006 - 03:10 PM
|
|
|
#2
Posted 14 August 2006 - 10:40 AM
try
control.TabStop = true;
control.TabStop = true;
#3
Posted 14 August 2006 - 12:24 PM
You mean control.tabstop = false;
#4
Posted 15 August 2006 - 04:15 AM
Yes you're right, thanks for the correction :)
#5
Posted 02 September 2006 - 02:29 PM
Why would you want a control that couldn't get focus? Just curious


Sign In
Create Account


Back to top









