Hi There,
I have created a simple application in my pocketpc (iPaq) and it had numeric updown buttons. I need to change the increments to 0.1 but it does not work?
Any ideas will be appreciated greatly!!!
Printable View
Hi There,
I have created a simple application in my pocketpc (iPaq) and it had numeric updown buttons. I need to change the increments to 0.1 but it does not work?
Any ideas will be appreciated greatly!!!
what do you mean by numeric up down buttons???
Do you need to increment a value each time a button is pressed??
Inside the key_press eventVB Code:
Dim aVal as double = 0
VB Code:
aVal += 0.1
If you add a NumericUpDown control, it has a "increment" property, if you set this increment to 0.1 it does not work???
Decimal dont seem to work with it. Why dont you just use a textbox and have a plus and minus button beside it and just increment the value in the box???
Why does the decimals not work in it?
Anyways ...thanks for the idea!!! i think i might use that...