i'm using .rc file generated by MSVC.
end getting the following error: ---- windres.exe -i Prog_private.rc -I rc -o Prog_private.res -O coff windres.exe: ../BCC55/Bin/Prog.rc:10: parse error ----
error generated on this code: --- IDD_SETTINGS DIALOGEX 0, 0, 299, 207 STYLE DS_SETFONT | WS_POPUP | WS_CAPTION CAPTION "Settings" ---
on the string , conatines STYLE. what should I do?
Try including <windows.h> in the rc file. And delete all the unneeded stuff from MSVC( afx...)
Log in to post a comment.
i'm using .rc file generated by MSVC.
end getting the following error:
----
windres.exe -i Prog_private.rc -I rc -o Prog_private.res -O coff
windres.exe: ../BCC55/Bin/Prog.rc:10: parse error
----
error generated on this code:
---
IDD_SETTINGS DIALOGEX 0, 0, 299, 207
STYLE DS_SETFONT | WS_POPUP | WS_CAPTION
CAPTION "Settings"
---
on the string , conatines STYLE.
what should I do?
Try including <windows.h> in the rc file. And delete all the unneeded stuff from MSVC( afx...)