L
Lori2836 via AccessMonster.com
This event is part of a text box that filters a subform as a contract number
is being typed in. I tried to copy from this form, to my own.......created
the text box, changed the txt names, etc....but when I try to actually type
something into my text box, the first line is highlighted...it doesn't seem
to like the Me.Exit_Form.
Can someone explain to me exactly what that first line is doing, or saying?
Thanks,
Lori
Private Sub HeimContractRef_Change()
Me.Exit_Form.SetFocus
Me.TxtHeimContractRef.SetFocus
Me.TxtHeimContractRef.SelStart = Me.TxtHeimContractRef.SelLength + 1
DoCmd.Requery ("Search for contracts subform")
End Sub
is being typed in. I tried to copy from this form, to my own.......created
the text box, changed the txt names, etc....but when I try to actually type
something into my text box, the first line is highlighted...it doesn't seem
to like the Me.Exit_Form.
Can someone explain to me exactly what that first line is doing, or saying?
Thanks,
Lori
Private Sub HeimContractRef_Change()
Me.Exit_Form.SetFocus
Me.TxtHeimContractRef.SetFocus
Me.TxtHeimContractRef.SelStart = Me.TxtHeimContractRef.SelLength + 1
DoCmd.Requery ("Search for contracts subform")
End Sub