Feb 21, 2002 #1 Blobishthing Programmer Feb 16, 2002 23 AU can i put a message box in delphi like in VB
Feb 22, 2002 #2 sggaunt Programmer Jul 4, 2001 8,620 GB 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.. Upvote 0 Downvote
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..