I want to have two buttons PREVIOUS and NEXT and I would like to have the same window but every time the NEXT button is clicked I want the information to be changed and something new to appear.
How can I do something like this?
I want to have two buttons PREVIOUS and NEXT and I would like to have the same window but every time the NEXT button is clicked I want the information to be changed and something new to appear.
How can I do something like this?
You should write 2 slot functions and connect with buttons. For example slotPrevious() and slotNext() and connect them with connect(ui->pushButtonNext, SIGNAL(clicked()), this,SLOT(slotNext()));
. And update your information widget with these functions.
well in order to help what do you want to be changing? Text labels, input fields,buttons?
Please tell what do you want to change to make you a sample...