In Windows application,I have four buttons on Windows form. When I run, it
doesn't show focus on first button.
> In Windows application,I have four buttons on Windows form. When I run, it
> doesn't show focus on first button.
Either you can set focus explicitly by calling button.Focus()
or you can set the form's AcceptButton to one of the buttons on your form
or you can change the taborder of your form.
manish - 17 Jun 2006 06:06 GMT
Have u set TabIndex for buttons and TabStop propery to true.
This will solve your problem
manish - 17 Jun 2006 06:07 GMT
Have u set TabIndex for buttons and TabStop propery to true.
This will solve your problem