Click here to Skip to main content
15,922,427 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Display Date Pin
chrismerrill23-May-05 9:31
chrismerrill23-May-05 9:31 
GeneralRe: Display Date Pin
George Inacio23-May-05 15:21
George Inacio23-May-05 15:21 
GeneralOwner Draw Pin
Rizwan Bashir23-May-05 3:38
Rizwan Bashir23-May-05 3:38 
GeneralJump to TextBox Pin
hakanaktan23-May-05 2:14
hakanaktan23-May-05 2:14 
GeneralRe: Jump to TextBox Pin
rudy.net23-May-05 2:44
rudy.net23-May-05 2:44 
Generali need a little code Pin
hakanaktan23-May-05 3:24
hakanaktan23-May-05 3:24 
GeneralRe: i need a little code Pin
toxcct23-May-05 3:34
toxcct23-May-05 3:34 
GeneralRe: Jump to TextBox Pin
George Inacio23-May-05 16:50
George Inacio23-May-05 16:50 
Try this.

Private Sub Text1_Change()

Dim lCount As Long

lCount = Len(Text1.Text)
For lCount = 1 To lCount
If Mid$(Text1.Text, lCount, 1) = "," Then
Text1.Text = Left$(Text1, (lCount - 1))
Text2.SetFocus
Exit For
End If
Next lCount

End Sub

George
GeneralRe: Jump to TextBox Pin
albCode25-May-05 20:58
albCode25-May-05 20:58 
GeneralTo send live audio & video data on network. Pin
shumyla198323-May-05 1:10
shumyla198323-May-05 1:10 
Generalradiobutton and textbox Pin
Manik Nath22-May-05 23:37
Manik Nath22-May-05 23:37 
GeneralRe: radiobutton and textbox Pin
toxcct23-May-05 0:18
toxcct23-May-05 0:18 
GeneralRe: radiobutton and textbox Pin
Anonymous23-May-05 0:29
Anonymous23-May-05 0:29 
GeneralRe: radiobutton and textbox Pin
Manik Nath23-May-05 0:31
Manik Nath23-May-05 0:31 
GeneralRe: radiobutton and textbox Pin
toxcct23-May-05 0:54
toxcct23-May-05 0:54 
GeneralRe: radiobutton and textbox Pin
Manik Nath23-May-05 1:24
Manik Nath23-May-05 1:24 
GeneralRe: radiobutton and textbox Pin
toxcct23-May-05 1:29
toxcct23-May-05 1:29 
GeneralRe: radiobutton and textbox Pin
Manik Nath23-May-05 1:47
Manik Nath23-May-05 1:47 
GeneralRe: radiobutton and textbox Pin
raph-it23-May-05 1:29
raph-it23-May-05 1:29 
GeneralRe: radiobutton and textbox Pin
Manik Nath23-May-05 1:54
Manik Nath23-May-05 1:54 
GeneralRe: radiobutton and textbox Pin
raph-it23-May-05 1:57
raph-it23-May-05 1:57 
GeneralRe: radiobutton and textbox Pin
Manik Nath23-May-05 2:07
Manik Nath23-May-05 2:07 
GeneralRe: radiobutton and textbox Pin
raph-it23-May-05 3:06
raph-it23-May-05 3:06 
GeneralRe: radiobutton and textbox Pin
Manik Nath23-May-05 3:20
Manik Nath23-May-05 3:20 
GeneralRe: radiobutton and textbox Pin
albCode25-May-05 21:00
albCode25-May-05 21:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.