Subj : Re: dialog boxes To : borland.public.cpp.borlandcpp From : Bob Gonder Date : Tue Sep 30 2003 06:02 pm >> Rob C. wrote in message >> news:3f79c3e0@newsgroups.borland.com... >> >> C:\BC5\EXAMPLES\OWL\TUTORIAL\step01.cpp >> Error: step01.cpp(53,67):Undefined symbol 'IDD_DIALOG1' >> >> [*.rc is included in my project, and I know 'IDD_DIALOG1' >> is in it because i can retrieve it to change it.] IDD_DIALOG1 should be a number, defined in your rc file. Something like #define IDD_DIALOG1 5 step01.cpp doesn't know what that value is, so gives the error. Usual solution is to move all of the resource #defines into a resource header file (.rh) that you then include in both the .rc and the .cpp .