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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Message box

Status
Not open for further replies.

Blobishthing

Programmer
Feb 16, 2002
23
AU
can i put a message box in delphi like in VB
 
Delphi has at lest 3 ways of displaying a message box

Showmessage('your text'); is the simplist,

Messagedlg('Your text',Message type, [The buttons you want],the help context); The most useful?

and

messagebox('your text','the caption',flags);
This last one is most like a VB (Windows generic message box).

The help files will give you details on the parameters required for each of these.

Steve..

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top