Window that shows up and disappears no matter what

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

Guest

The application is hidden and at times it must show a form that should appear
at the top of all other windows and its text box should have the focus no
matter where the focus was prior to the window becoming visible. Once the
text has been entered, the form should become invisible again. What's the
best way to do this?
 
The application is hidden and at times it must show a form that should appear
at the top of all other windows and its text box should have the focus no
matter where the focus was prior to the window becoming visible. Once the
text has been entered, the form should become invisible again. What's the
best way to do this?

Form.TopMost property
Form.Show() method
TextBox.Focus() method
Form.Hide() method

Thanks,

Seth Rowe
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top