forcing user to click Ok to proceede

SSb

Member
Joined
Sep 28, 2005
Messages
14
Programming Experience
Beginner
[RESOLVED] forcing user to click Ok to proceede

Hi All,

This is what I'm trying to do, when the MDI application runs it should open, and show a form (say Form1) with some information about the application. I want the user to click on the "OK" button in order to proceed using the application. This could be done using the MessageBox.Show() method but I need to put text in a particular way with some buttons etc thus I made Form1.

What I want to know is how to force the user to click on "OK" to proceed. Right now Form1 is just displayed as a general form and the user can click anywhere on the main MDI application and Form1 goes in the background.

Thanks,
Saurabh
 
Last edited:
on form1 instead of using the Show() method (like you are now) use ShowDialog() instead

that will force the user to finish with this form before going to the next
 
Back
Top