[solved]calling a dialog in another dialog
-
wrote on 9 Jul 2011, 11:01 last edited by
this is the pro file:
@TARGET = NoteBook
TEMPLATE = app
SOURCES += dialog.cpp
../source/src/main.cpp
../signup.cpp
HEADERS += dialog.h
../source/src/User.h
../source/src/TagRelation.h
../source/src/Tag.h
../source/src/header.h
../source/src/Content.h
../source/src/BaseRelation.h
../source/src/BaseIndex.h
../source/src/BaseEntity.h
../signup.h
FORMS += dialog.ui
../signup.ui
@ -
wrote on 9 Jul 2011, 11:07 last edited by
I see in your .pro file that your signup.h is NOT in the same directory as your dialog.cpp. You should either use
@
#include "../signup.h"
@
or add to your .pro file
@
INCLUDEPATH += ../
@ -
wrote on 9 Jul 2011, 11:23 last edited by
thank you Denis.
it works.
really thank you......
and thank from everybody that reply me and help me to solve this problem. -
wrote on 9 Jul 2011, 11:29 last edited by
You are welcome. Don't forget to mark thread as [solved]
-
wrote on 9 Jul 2011, 11:39 last edited by
ok.sure.
21/25