Link to home
Start Free TrialLog in
Avatar of souldigital
souldigital

asked on

VB6 Keypad

Basically I have two text boxes and a keypad. I can get the keypad to work with one text box with no problems

Text1.Text = Text1.Text + "1"

What I want the program to do is detect which text box the user has selected so when you click the buttons on they keypad they fill the selected text box. The user can then move onto the next text box and fill that using the keypad.
Avatar of IanTh
IanTh
Flag of United Kingdom of Great Britain and Northern Ireland image

have you got an on-click event handler setup on the text boxes?
Avatar of souldigital
souldigital

ASKER

No?
well how are you going to tell which text box the user clicks in as thats what the on-click event handler will do imho
I don't know hence why I have asked. So what you are suggesting is that I need to look into something called on click event handler?
ASKER CERTIFIED SOLUTION
Avatar of Leithauser
Leithauser

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Where do I find GotFocus sub?
Double click on the text box.  This will bring up the code for the text box. In the upper right corner of the code form is a drop down list box of the control's Event subs. If you have attached no code to the text box so far, it probably says "Change." Click on the drop down box to see an alphabetical list of all the Event code modules for the text box. GotFocus will be on the list. Just click on it to select that Event sub. Then input the WhichTextBox = 1 or WhichTextBox = 2 (and so on) code into that Event sub.