This code adds a charicter to the end of a line before going to the next
This code adds a charicter to the end of a line before going to the next
Rate This code adds a charicter to the end of a line before going to the next
(1(1 Vote))
'2) Add the code below to the form
'3) Replace the "," with whatever charicter or text you want
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
Text1.SelText = Text1.SelText + ","
End If
End Sub
This code adds a charicter to the end of a line before going to the next Comments
No comments yet — be the first to post one!
Post a Comment