RE: Numeric Key Pad for touch screen



Create a form with all the command buttons you need, including a decimal
place button, and a text box to show the value entered, and, of course, a
clear button.
Then in the click event of each of the buttons, do what is neccesary. For
example the "3" command button code would look something like this in the
Click event:

Me.txtPrice = Me.txtPrice & "3"

The Clear button would be
Me.txtPrice = Null

--
Dave Hargis, Microsoft Access MVP


"CJA" wrote:

Hi,

I need to create something like the "Date Picker", but for numbers.
My application will be used in a touch screen notebook. I need this: when a
user touch the price field, open a small numeric keypad where the user can
press the numbers to indicate the price.
With this function, notebook keyboard will not be used.

Thanks

CJA


.


Loading