I am having trouble with text boxes. (Like you wouldn't have guessed from the title)
What I would like to happen is when a button is pressed the mouse cursor goes to the start of the line. (My text box has multi line enabled)
The code I have used for the button press is:
Private Sub Form_KeyPress(KeyAscii As Integer)
If KeyAscii = 120 Then
Call cmdTime_Click
End If
End Sub
I need the code for the cmdTime_click sub routine, which is also a command button.
Thanks for looking
