I'm using ResEd to visually create a preferences page for a plugin.
ResEd created a file res.rc with the following:
CODE
#define IDD_DLG1 1000
#define IDC_CHK1 1001
IDD_DLG1 DIALOGEX 6,6,194,102
LANGUAGE 8,1
CAPTION "IDD_DLG"
FONT 8,"MS Sans Serif",0,0
STYLE 0x40000000
BEGIN
CONTROL "Show number of total items ",IDC_CHK1,"Button",0x50010003,8,9,104,9
END
I added this file to the "Resources Files" folder of my project, but when I try to compile it, it reports an error in the uCreateDialog statement that IDD_DLG1 is an undeclared identifier.
Is there anything else I must do?
