passing control (AGAIN)

bry

Registered User.
Local time
Today, 11:10
Joined
Oct 8, 2001
Messages
10
Opps! this is what i should have posted.

Can anyone help - I need to pass control from a subform to the main form when the field is null.

this is what ive got so far, the first part works but the reference to the field i want to jump to, will not work?


Private Sub Diameter_LostFocus()
If IsNull(Me.[diameter description]) Then
Me.Parent.[network data info source].SetFocus
End If

End Sub

thanks bry.
 
Hi, have you tried using
me![network data info source].setfocus


Hope this helps

Mark
 

Users who are viewing this thread

Back
Top Bottom