tags:

views:

51

answers:

2

Hello,

I am working on an application which uses the QInputDialog command to get a value from the user. The value is then used in several computation in the application. I want to modify the application in the following way: I want to the able to read several values from the user before the computations are performed.

Any idea of what object from QT should I use?

Thank you in advance, madalina

+3  A: 

I would just create a custom QDialog (or heck just another screen in the application) to gather the required information, if it is several values.

JimDaniel
So would I. QInputDialog is just a convenience to get a single value from user.
Nikola Kotur
A: 

Yes I have used several QDialog's. Thanks for your time, madalina

madalina