Re: Problem with UI showing
call go() with a single shot timer or better reimp the showEvent and then start go().
Re: Problem with UI showing
i think time isnt problem here.
Code:
ui(new Ui::ka)
{
ui->setupUi(this);
QTimer::singleShot(1000,
this,
SLOT(quit
()));
go();
}
it waits a few sec, do go(); function, a then shows ui
and i dont know how to use showEvent...
Code:
ui(new Ui::ka)
{
ui->setupUi(this);
go();
}
I tried like that but it dosnt work.
thanks for helping... :)
Re: Problem with UI showing
Make go() a slot and call that, not quit()...