Monday, December 18, 2017

DELPHI - How show base info dialog

This is an easiest way how to show info dialog in Delphi:
ShowMessage( 'This is an info dialog.' );
Output:







Another variant is advanced version, where you can specify type, buttons and help context:
MessageDlg( 'This is an info dialog.', mtInformation, [ mbOk ], 0 );

No comments:

Post a Comment