I'm using the Application.MessageBox to show messages on my VCL application, but when the application had a vcl style applied the message window is shown with the windows style instead of the current vcl style.

Sample code

 Application.MessageBox('Hello World', 'Hello', MB_OK + MB_ICONINFORMATION);

Sample Image

enter image description here

How I can show a message box with the current vcl style?

link|improve this question

1  
Anyone else remember WinAmp? – David Heffernan Feb 4 at 22:57
feedback

1 Answer

up vote 10 down vote accepted

The Application.MessageBox function internally call the MessageBox WinAPi function, that window is not a form created by delphi so can't be skinned with the Vcl styles. Instead you must use one of the dialogs classes and functions declarated in the Vcl.Dialogs unit like the MessageDlg function.

MessageDlg('Hello World',  mtInformation, [mbOK], 0);

enter image description here

link|improve this answer
Do these dialog classes support CTRL+C yet? – David Heffernan Feb 5 at 9:28
@DavidHeffernan, Yes. – RRUZ Feb 5 at 15:41
I just tried. Doesn't support CTRL+C very well because when you press the keys, the computer beeps the warning bell. I guess I'll debug it and QC it. – David Heffernan Feb 5 at 17:44
Hmm, the Beep is intentional and explicitly written into the CTRL+C handler. Bizarre that they would intentionally vary from the platform standard. – David Heffernan Feb 5 at 17:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.