How to show the form in this case?
-
I have make a application that the user will open a whole day, The application contains a folder watcher, when new file created in that folder, A event will rise. How can I set my application at the top of screen? I have tried me.show, me.activate, me.WindowState = FormWindowState.Maximized ... All these cannot work properly.
-
I have make a application that the user will open a whole day, The application contains a folder watcher, when new file created in that folder, A event will rise. How can I set my application at the top of screen? I have tried me.show, me.activate, me.WindowState = FormWindowState.Maximized ... All these cannot work properly.
Hi, If you are trying to make the window as top-most accessible window you should try to load it with .ShowDialog instead of show. batmike2000