Can any body suggest me to find non child dialog of a class open with main window
Printable View
Can any body suggest me to find non child dialog of a class open with main window
I don't understand. Please rephrase.
Hi,
I am using
void Mainwindow::newdilog()
{obj =new dialog();
obj->show()
}
and
obj is declared as public in .h file
dialog *obj;
I am calling above function many time.
but i want to know addreess or pointer of dialog class which are currently non visible
Do you get information
Why should it make any difference whether a dialog is visible or not? What kinds of dialog are you thinking about? What is your big plan that you want to archive?
I want to make sticky type application.so i want archive all information of visible dialog when user close mainwindow.
So why not saving a pointer to that dialog when creating it first?
Thanks ,
My problem get solved