Home All Groups Group Topic Archive Search About

Window that shows up and disappears no matter what

Author
30 Apr 2007 5:48 AM
Don W
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?

Author
30 Apr 2007 1:34 PM
rowe_newsgroups
On Apr 30, 1:48 am, Don W <D***@discussions.microsoft.com> wrote:
> 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