View Single Post
  #6 (permalink)  
Old 01-16-2009, 04:30 PM
Erel's Avatar
Erel Erel is offline
Administrator
 
Join Date: Apr 2007
Posts: 13,119
Awards Showcase
Basic4ppc Founder 
Total Awards: 1
Default

The relevant code which should be placed in sub TextBox1TextChangedEvent_NewEvent is:
Code:
    If StrLength(TextBox1.Text) < 2 Then 'Ignore keyboard.
    TextBox1.Text = ""
    
Return
End If
Form1.Text = TextBox1.Text
TextBox1.Text = 
""
__________________
Basic4android documentation
Reply With Quote