Nancythomas
Registered User.
- Local time
- Today, 06:11
- Joined
- Apr 20, 2010
- Messages
- 59
Can you please give me the exact VB script for this.
I have a popup memo field and when I hit the enter key it closes the popup form and returns to the main form.
I would like the following:
- when I hit the enter key it should go to the next row and not close the form.
Currently on load I have the below script:
Private Sub Form_Load()
'Unselect text.
Me.txtText.SetFocus
Me.txtText.SelLength = 0
End Sub
Can you please help me
I have a popup memo field and when I hit the enter key it closes the popup form and returns to the main form.
I would like the following:
- when I hit the enter key it should go to the next row and not close the form.
Currently on load I have the below script:
Private Sub Form_Load()
'Unselect text.
Me.txtText.SetFocus
Me.txtText.SelLength = 0
End Sub
Can you please help me