Messagebox question

  • Thread starter Thread starter AMP
  • Start date Start date
A

AMP

I want to display a message box when a form
displays:Copyright,blah,blah,blah.
But I can seam to know where to put it.I tried form load, initialize
component.
Where does it go?
Thanks
Mike
 
AMP

If you're using 2005/Framework 2.0 the best place I've found to do something
like this is the Form_Shown event.

HTH
WhiteWizard
aka Gandalf
MCSD.NET, MCAD, MCT
 
AMP said:
I want to display a message box when a form
displays:Copyright,blah,blah,blah.
Where does it go?

Well, the best place is probably in your Main() method, just before
Application.Run().

Note, however, if you use a MessageBox, it will be Modal -- your
application will stop until the user click OK.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top