Thanks, June7. You've help me out a bunch of times already. Take a break.
Thanks, June7. You've help me out a bunch of times already. Take a break.
Ok, so I created a new button for the sub-form to just call parent instead of sub-sub-form calling parent.parent. Same error 438 issue. Any idea why it would have this problem setting the focus to a parent form?
I fixed it!
Me.Parent.Parent!Comments.SetFocus
DoCmd.GoToRecord , , acNewRec
I had it as:
Me.Parent.Parent.Form!Comments.SetFocus
DoCmd.GoToRecord , , acNewRec
and that's what caused days of headaches. Thank you June7 for your help.