MessageBox french
-
Now. I have to change messagebox to (OK - Cancel) to the French language. In source English use MB_OKCANCEL. I have to change MB_OKCANCEL to another to my messagebox have 2 buttons: OK - Annuler Please help me Software Engineer
Messagebox caption will change automatically according to the OS default language. You can use custom messagebox ur own to change the language. cheers..milton kb
-
Now. I have to change messagebox to (OK - Cancel) to the French language. In source English use MB_OKCANCEL. I have to change MB_OKCANCEL to another to my messagebox have 2 buttons: OK - Annuler Please help me Software Engineer
More level of customization can be done by using a windowshook for WH_CBT and traping the HCBT_ACTIVATE. Regards, FarPointer Blog:http://farpointer.blogspot.com/
-
Now. I have to change messagebox to (OK - Cancel) to the French language. In source English use MB_OKCANCEL. I have to change MB_OKCANCEL to another to my messagebox have 2 buttons: OK - Annuler Please help me Software Engineer
I think that you can use
MessageBoxIndirect(...)
to specify a different Language ID to use for the text on the standard button(s). It looks likeMessageBoxEx(...)
can be used, but I do not think the "cross-language" functionality is implemented in it. Peace! -=- James
If you think it costs a lot to do it right, just wait until you find out how much it costs to do it wrong!
Avoid driving a vehicle taller than you and remember that Professional Driver on Closed Course does not mean your Dumb Ass on a Public Road!
DeleteFXPFiles & CheckFavorites (Please rate this post!) -
I think that you can use
MessageBoxIndirect(...)
to specify a different Language ID to use for the text on the standard button(s). It looks likeMessageBoxEx(...)
can be used, but I do not think the "cross-language" functionality is implemented in it. Peace! -=- James
If you think it costs a lot to do it right, just wait until you find out how much it costs to do it wrong!
Avoid driving a vehicle taller than you and remember that Professional Driver on Closed Course does not mean your Dumb Ass on a Public Road!
DeleteFXPFiles & CheckFavorites (Please rate this post!)