Hi, I've started to learn Windows programming and wrote first
program:
Code:
#include <windows.h>

int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
                    PSTR szCmdLine, int iCmdShow)
{
     MessageBox (NULL, TEXT ("Hello, Windows 98!"), TEXT ("HelloMsg"), 0) ;

     return 0 ;
}
I) have question regarding MessageBox:
when 0 is last argument button OK will show up, I can put something else,
for example: MB_YESNOCANCEL. My native language is not english so my question is how to change button to display text which on my language means Cancel?
Is it possible without making new form and adding buttons to simulate MessageBox?
Thanks