how to lock focus of a form

  • Thread starter Thread starter BMax
  • Start date Start date
B

BMax

Hello
I put my Options on e separated form and want to lock the focus on it until
user click ok or cancel, i mean deactivate the main form when option form is
shown (like IE option or most of the windows applications).
how`?
 
* "BMax said:
I put my Options on e separated form and want to lock the focus on it until
user click ok or cancel, i mean deactivate the main form when option form is
shown (like IE option or most of the windows applications).
how`?

\\\
Dim f As New OptionsForm()
f.ShowDialog()
f.Dispose()
///
 
Back
Top