I am working with C++ Builder and I want to work with MessageBox and the clickables "OK" and "Help". When the user presses "Help", a new form should be opened. So here is my problem:
While using MessageBox and the command with MB_HELP, the Buttons "ok" and "Help" will be displayed. But when pressing Help the compiler won't do anything, he only does something and returns 1 when i am pressing Ok Button.
btw. i am with VCL-Formapplication.
Thanks for your help :)
if (Application->MessageBox("Die maximale Temperatur von 30°Grad darf nicht
überschritten werden",
"Warnung", MB_HELP | MB_ICONEXCLAMATION) == IDOK);
{
///setting values///
}
else Form1->Show();