My dialog has a dialog data section as follows
// Dialog Data
//{{AFX_DATA(CSpecialPayeeWarningDialog)
enum { IDD = IDD_SPECIALPAYEE_WARNING };
CStatic m_payeeNames;
//}}AFX_DATA
However, when I compile the dialog I get the error.
C:\Projects\ta_root\TaGui\SpecialPayeeWarningDialog.h(81) : error C2065: 'IDD_SPECIALPAYEE_WARNING' : undeclared identifier
The .rc file and resource header seem to be correct. This one has me stumped.
Any ideas on where else to look? Thanks in advance for the help.
// Dialog Data
//{{AFX_DATA(CSpecialPayeeWarningDialog)
enum { IDD = IDD_SPECIALPAYEE_WARNING };
CStatic m_payeeNames;
//}}AFX_DATA
However, when I compile the dialog I get the error.
C:\Projects\ta_root\TaGui\SpecialPayeeWarningDialog.h(81) : error C2065: 'IDD_SPECIALPAYEE_WARNING' : undeclared identifier
The .rc file and resource header seem to be correct. This one has me stumped.
Any ideas on where else to look? Thanks in advance for the help.