Hi All,
I am new to Qt Designer. My query is has follows
I have two dialog boxes. In the first one I have a table. In the second dialog box I have a push button which when clicked should set the value in the table of the first dialog box.
For which I have used the following code segment.
void Parameter_Selection_Dlg::ProcessParams()
{
a.table1->setText( 1, 1, "qqq" );
this->close();
}
Now The problem is the value is not been updated in the table. I dont know why?
I used repaint, show, update in both this dialog box and init function of the first dialog box.
Can Anyone Please Help Me Solve This Problem..........
Thanks and Regards In Advance,
Kenny
Bookmarks