Dear visitor, welcome to QtForum.org. If this is your first visit here, please read the Help. It explains how this page works. You must be registered before you can use all the page's features. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
Problem
I have a keypad where i am takin input as QStrings ,
Now when the usen enters a number i want
. For example, to enter 123.45 on a floating point range screen having a range from 000.00 to 999.99:
Pressing "1" Key: it will show - 000.01
Pressing "2" Key: it will show - 000.12
Pressing "3" Key: it will show - 001.23
Pressing "4" Key: it will show - 012.34
Pressing "5" Key: it will show - 123.45
Can ne1 tell how to go about it , i am very new to QT
the keyboard driver is installed?
which version?
if you press the keys after integrating the driver, you can get the ascii values internally.
since you are using QString, a recursive algorithm for dumping the values from 1 to x will do. simple.
btw... have you implemented it already?