Topic: ShowMessage

Hello Experts!

Can I change the Title in the MessageBox?

ty

Re: ShowMessage

MessageBox(Text,Caption,Flags)

The 2nd param (Caption) is the title of the MessageBox.

MessageBox('My message','Title',MB_OK);
while(! success=retry());
https://jihem.itch.io

Re: ShowMessage

Thank You!