Error Msg

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
 
G

Gary Miller

Russ,

Try Me.Parent!txtSplrs

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

Gary Miller
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top