In my program I used this code to ask whether to do or not to do a thing.
[iResult=MessageBox("If you continue, you will loose any precedent modification.\r\n\r\n\t Continue anyway?","Request",MB_YESNO|MB_ICONQUESTION);
if (iResult==IDYES)
{
...
}[/i]
All is ok but there is a little problem: when the program visualizes the MessageBox it shows not "Yes" "No" button but "Si" "No" in Italian. I tried to use MB_OKCANCEL but i have "Ok" "Annulla" again in Italian.
All my program is in English and so I don't want anything in Italian. How can I compile all for English Language???? My Windows is in Italian: is this the problem? How can I solve it?
Thank's everybody
[iResult=MessageBox("If you continue, you will loose any precedent modification.\r\n\r\n\t Continue anyway?","Request",MB_YESNO|MB_ICONQUESTION);
if (iResult==IDYES)
{
...
}[/i]
All is ok but there is a little problem: when the program visualizes the MessageBox it shows not "Yes" "No" button but "Si" "No" in Italian. I tried to use MB_OKCANCEL but i have "Ok" "Annulla" again in Italian.
All my program is in English and so I don't want anything in Italian. How can I compile all for English Language???? My Windows is in Italian: is this the problem? How can I solve it?
Thank's everybody