Can I find out if the blinking cursor is at the beginning or end of a text box?
Can I find out if the blinking cursor is at the beginning or end of a text box?
VB Code:
If Text.SelStart = 0 Then 'The beginning ElseIf Text1.SelStart = Len(Text1.Text) Then 'The end End If
:)
Cool dude, thanks!