a problem in VB 6 (textbox.text)
Visual Basic
4
Posts
3
Posters
0
Views
1
Watching
-
I want to delete the character that is in the cursor position(the text in Textbox control in VB6). help me please.
-
I want to delete the character that is in the cursor position(the text in Textbox control in VB6). help me please.
-
I want to delete the character that is in the Cursor position!(Current position of Blink cursor in a textbox)
-
I want to delete the character that is in the cursor position(the text in Textbox control in VB6). help me please.
Text1.Text = Left$(Text1, Text1.SelStart) + Right$(Text1, Len(Text1) - Text1.SelStart - 1)