Tags:C BuilderDelphi
When we using the message box prompt in Delphi or C++Builder, we will write a code line something like:
if ((Application->MessageBox("Are you sure to delete this datas?", "confirm!", MB_ICONINFORMATION|MB_YESNO)) == ID_YES)
{
do the delete code here...
}
else
{
do the do not delete action here...
}
So, this is the message box symbols and with their meanings you would use in
Delphi or C++Builder. Following list the TMsgDlgBtn, TMsgDlgButtons type in...