for a project i'm doing, i want to create an(well i have) about form
how can i do it so that the about form is the most top form and you cannot click on the main form until you've closed the about form?
Any ideas?
Printable View
for a project i'm doing, i want to create an(well i have) about form
how can i do it so that the about form is the most top form and you cannot click on the main form until you've closed the about form?
Any ideas?
If you open the form (about box) using ShowDialog instead of Show, it will behave just like you want too.
Thank you mate,
Works perfectly!
/rates
well you can set the about form property "topMost" = true, on the properties pane
That will only keep the form on top, the user will still be able to click on the form behind.Quote:
Originally Posted by winsrp