Command button focus

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a form that is informational only (like a help file) with a close
button at the bottom. Upon opening the form, the focus is automatically on
this button. Is there a way to remove the focus from this button when the
form opens? There are no other controls on the form, just labels.

Thanx,

Rip
 
Place a textbox on the form. Set the Height and Width properties of the
textbox to 0. In the Open event of the form set the focus to this textbox.
 
Back
Top