Friends please help me if possible...
my application having a mdisubwindow, mainwindow and mdi area.. i set mdi area as central widget of mainwindow...added mdisubwindow to mdi... but itried to launch application using the following code ... but no input widget getting focus even.....if i shown any dialog or Qwidget before showing that mdisubwindow... everything works fine

Qt Code:
  1. int main(int argc, char *argv[])
  2. {
  3. QApplication a(argc, argv);
  4. mainWindow w;
  5. w.show();
  6.  
  7. masterMenu *c=new masterMenu;
  8. c->show();
  9.  
  10. return a.exec();
  11. }
To copy to clipboard, switch view to plain text mode