MessageBox French
-
I have a project with UI language is English. I have to support french language for my project. I have 1 problem and i think you can help me. UI has done. I have a problem: MessageBox. Buttons on the my MessageBox are OK - Cancel but in the French are OK - Annuler. I using MB_OKCANCEL. I have not solution for this problem (from OK-Cancel to OK-Annuler). Example Please help me soon! Thank you very much Papai's And please say me about PleaMessageBoxIndirect. with sample. Thanks and I sorry to inconvenience. Software Engineer
-
I have a project with UI language is English. I have to support french language for my project. I have 1 problem and i think you can help me. UI has done. I have a problem: MessageBox. Buttons on the my MessageBox are OK - Cancel but in the French are OK - Annuler. I using MB_OKCANCEL. I have not solution for this problem (from OK-Cancel to OK-Annuler). Example Please help me soon! Thank you very much Papai's And please say me about PleaMessageBoxIndirect. with sample. Thanks and I sorry to inconvenience. Software Engineer
These buttons depends on the language installed for windows. So it is not dependent of your application but rather of the language of windows. If you install your program on a french windows, the buttons will be in french.
Cédric Moonen Software developer
Charting control -
I have a project with UI language is English. I have to support french language for my project. I have 1 problem and i think you can help me. UI has done. I have a problem: MessageBox. Buttons on the my MessageBox are OK - Cancel but in the French are OK - Annuler. I using MB_OKCANCEL. I have not solution for this problem (from OK-Cancel to OK-Annuler). Example Please help me soon! Thank you very much Papai's And please say me about PleaMessageBoxIndirect. with sample. Thanks and I sorry to inconvenience. Software Engineer
Oneway to is to define two string table one is for french and another one in english see the sample snippet #define LANG_FRENCH
CMyDialog::OnInitDialog()
{
CString strText;
#ifdef LANG_FRENCH
LoadString(ID_OK_FRNCH);
#else LANG_FRENCH
LoadString(ID_OK_ENG);
SetDlgItemText(IDB_OK,strText
}remove the definition, if you wanna support english SaRath.
"It is your attitude, not your aptitude, that determines your altitude - Zig Ziglar." My Blog | Understanding State Pattern in C++ -
I have a project with UI language is English. I have to support french language for my project. I have 1 problem and i think you can help me. UI has done. I have a problem: MessageBox. Buttons on the my MessageBox are OK - Cancel but in the French are OK - Annuler. I using MB_OKCANCEL. I have not solution for this problem (from OK-Cancel to OK-Annuler). Example Please help me soon! Thank you very much Papai's And please say me about PleaMessageBoxIndirect. with sample. Thanks and I sorry to inconvenience. Software Engineer
try :-MessageBoxEx Regards, FarPointer Blog:FARPOINTER