View Full Version : passing control (AGAIN)


bry
10-08-2001, 02:26 AM
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.

Dachande11
10-08-2001, 03:49 AM
Hi, have you tried using
me![network data info source].setfocus


Hope this helps

Mark