if (confirm("Did you want to know how to do it in Javascript?"))
{
alert("You did? Great!");
}
else
{
alert("No? Tag your question with the required language/environment!");
}
Или, альтернативно,
int result = MessageBox(
NULL,
(LPCWSTR)L"So, did you want a Win32 example?",
(LPCWSTR)L"OK, the javascript one was flawed",
MB_ICONQUESTION | MB_YESNO
);
или, может быть,
int result = AfxMessageBox("Do people still use MFC?",
MB_ICONQUESTION | MB_YESNO);