Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Message box prob!

Status
Not open for further replies.

darklucifer

Programmer
Jan 3, 2004
4
GB
like in java (JOptionpaneInputmessageDiealog("please enter some thing");) how can i get the same thing in C#?
 
There is no "InputMessage" type of standard form in .NET like there is in Java or VB6. You'll need to write a small form and call it via the .ShowDialog method (don't forget to set the FormBorderStyle to FormBorderStyle.FixedDialog).

Chip H.


If you want to get the best response to a question, please check out FAQ222-2244 first
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top