Hi,
I have written a code which look like this.
//welcome.h
class Welcome
{}
//welcome.cpp ...////some functions in this
//Add.h
class ADD
{}
//Add.cpp ...//some functions in this
//main.cpp
main()
{
QApplication a(argc, argv);
welcome W;
W.show();
return a.exec();
}
I am calling "Add A.show();" in Welcome.cpp.
Now when I do this I have two screens: One is from welcome and another from Add.
What I wanted is when I call the second screen "Add A.show();". The previous screen ( welcome ) should get closed. This is what the problem is, I could not close the previous screen.
Can somebody suggest me how do I accomplish of having only one screen.
Thank you.

Reply With Quote


