Problem with dialogs
-
Hi everyone, I've got a problem with dialogs, After I open a dialog I want to call a function in the parent dialog... But when I include the parent header file it gives me errors... Please help me... Thanks.
Every new thing you learn,Gives you a new personality.
-
Hi everyone, I've got a problem with dialogs, After I open a dialog I want to call a function in the parent dialog... But when I include the parent header file it gives me errors... Please help me... Thanks.
Every new thing you learn,Gives you a new personality.
dSolariuM wrote:
when I include the parent header file it gives me errors...
What kind of errors...exactly? Mark
Mark Salsbery Microsoft MVP - Visual C++ :java:
-
dSolariuM wrote:
when I include the parent header file it gives me errors...
What kind of errors...exactly? Mark
Mark Salsbery Microsoft MVP - Visual C++ :java:
-
When I include the parent header file it gives the error that says: "childclass" not declared...
Every new thing you learn,Gives you a new personality.
-
Hi, Please post the code snippet and state in which line are you getting the compile error. Best Regards, Suman
-- "Programming is an art that fights back!"
/////// Form1 #include "Form2.h" Form2 ^f=gcnew Form2; f->ShowDialog(); /////////Form2 #include "Form1.h" Error: syntax error : identifier 'Form2' error C2065: 'f' : undeclared identifier error C2065: 'Form2' : undeclared identifier error C2227: left of '->ShowDialog' must point to class/struct/union/generic type
Every new thing you learn,Gives you a new personality.