VB Code:
Private Sub lblSelectAll_Click() Me.txtIPCheck.SetFocus SendKeys "{Home}+{End}" End Sub
Now that will select a normal 1 line text box.. correct?
I want to be able to select a multi line text box,
how do i do this?
I guess its
VB Code:
Private Sub lblSelectAll_Click() Me.txtIPCheck.SetFocus SendKeys "{*control key*}+{Home}+{End}" End Sub
only i dont know what the vb code for the control key is ?
Tnx





Reply With Quote