i get this error:
Error 1 error C2664: 'CreateWindowExW' : cannot convert parameter 2 from 'const char [7]' to 'LPCWSTR' c:\hfscontrol\hfscontrol\hfscontrol.cpp 80
when using this code:
// Create Button
hwndButton = CreateWindowEx(0,
"BUTTON","&ClickMe",WS_VISIBLE|WS_CHILD|BS_PUSHBUTTON,20,20,100,50,hWnd,NULL,hInstance,NULL);
could anyone let me know what is wrong this is a plain win32 project created in VS2005.
thanks in advance,
Daniel