Link to home
Start Free TrialLog in
Avatar of Matt_lee
Matt_lee

asked on

Help

I have been making a phone and i am not allowed to use the keyboard so i have to use the buttons to enter text into a field.  Just like a mobile phone, so far i have been able to place "A" "B" and "C" in to the field but they replace each other please help.  All the number buttons that i have used are Array buttons.  

thank you
Avatar of Vbmaster
Vbmaster

You mean you insert text into a textbox? If so, to prevent the old information to be removed you can use code like this

Text1.Text = Text1.Text & new_information

or

Text1.SelStart = Len(Text1.Text)
Text1.SelText = new_information


ASKER CERTIFIED SOLUTION
Avatar of raybeam
raybeam

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