This is my resource file for a program:
#include "resource.h"
//
IDR_MYMENU MENU
BEGIN
POPUP "&File" //<=error is here
BEGIN
MENUITEM "&Refresh", ID_PROG_REFRESH
MENUITEM "E&xit", ID_FILE_EXIT
END
POPUP "&Edit"
BEGIN
MENUITEM "&Options", ID_PROG_OPTIONS
END
POPUP "&About"
BEGIN
MENUITEM "A&bout AC", ID_PROG_ABOUT
END
END
I've Checked the above over and over again, but can't seem to find a problem with it, but I keep getting an error message from Dev-Cpp: [Resource error] syntax error
Could anyone point out how and where this goes wrong?
Thanks