Problems creating a popup keypad in access.
October 31, 2006 8:29 AM Subscribe
I am developing an access app for a UMPC, and because of the lack of a keyboard, I want to make a keypad number entry popup.
I am now struggling with the getting it to work. My current method is
Private Sub Button1_Click()
DoCmd.GoToControl "PackQuantity"
SendKeys "1", no
End Sub
and then repeat for each button. Currently I can only get it to put one number in the text box, because each press of the button erases the existing data. I have tried adding a line like:
SendKeys "{End}", no
Or instead of end, Right, but it does about the same thing.
I know this probably isn't the best way to do it, but its all I've come up with so far. Any suggestions would be welcome at this point.
posted by JonnyRotten to computers & internet (5 answers total)
posted by samstarling at 8:44 AM on October 31, 2006