Re: QWizard signal problem
Hi,
First set setOption(QWizard::IndependentPages); in the QWizard constructor.
Then use void QWizardPage::initializePage () [virtual] .
void QWizardPage::initializePage()
{
....
....
}
All the best..
Re: QWizard signal problem
Hi,
initializePage() is defined at QT4. Any solution for QT3?
Re: QWizard signal problem
Or i may try my code to convert to QT4. Is there any QWizard dialog at the qt4-designer. I haven`t seen such a thing thats why i choosed the qt3 designer to create my qwizard.
1 Attachment(s)
Re: QWizard signal problem
Hi,
Yeah, there is a QWizard availablle in Qt 4.
See the attachment i gave.