How to UN-highlight a field

svbl

Registered User.
Local time
Yesterday, 19:21
Joined
Jul 10, 2007
Messages
20
Hi. I have a form with tabs that also contain subforms within them. When I click through each tab, ONE field in the subform is highlighted with the cursor in that field.

This gets really annoying when I just want to view the data and not enter in data. Is there anyway I can prevent this?

Thanks!
 
Hello

If you are familiar with VBA you can use the SelStart property do this. It cancels the selection. Its in the help section.

Regards
Mark
 
THANK YOU for the reply.

Unfortunately I am not. Are there any other options, or another way you can help explain it to me?
 
Hello:
If you had a control named TEXT1 on your form, the below code would put the cursor at the beginning of the text box.
This would go in the Form Current event of your form.

Regards


Private Sub Form_Current()
Me.Text1.SetFocus
Me.Text1.SelStart = 0

End Sub
 

Users who are viewing this thread

Back
Top Bottom