Re:form always on top
Quote
"Rick" <r.nieuwl...@planet.nl> wrote:
>Hi, a simple question. When you click besides a form it will dissapear. I'd
>like to prevent this, only with a button you can hide the form. Is their a
>property wich tells the form to stay on top?
>Greetings,
>Rick
What you're talking about is a modal form. To do that, instead of using the MyForm.Show method to pop up your form, use MyForm.ShowModal
You can also use the FormStyle property of your form. Set it to fsStayOnTop and surprisingly, it will stay on top of your application !!
Then you won't be able to switch to another form in your application until this one's closed
Martin