Error Msg

  • Thread starter Thread starter Russ
  • Start date Start date
R

Russ

any body know what is causing this error?
"There is an invalid use of the .(dot) or ! operator or
invalid parentheses"
this is where it goes to:
Private Sub Form_Current()
If IsNull(Me.txtSplr) Or Me.txtSplr = " " Then
Me.txtSplr = Parent.txtSplrs
Else
Exit Sub
End If

End Sub
 
Russ,

Try Me.Parent!txtSplrs

Also, most agree that it is better to use ! rather than . when referring to
controls

Gary Miller
 
Back
Top