OK, I have a Main Form with several tabs and subforms.
On the Main Form I have a Text box: Text153 which is linked to Date Last Modified in my Resumes Table.
Then I have this event on After Update:
Private Sub Form_AfterUpdate()
Me.Parent.Text153 = Now()
End Sub
Which was working fine but now seems to throw this error:
You Can't assign a value to this object and Highlights:
Me.Parent.Text153 = Now()
I'm not getting what I changed or did that would make it stop working all of the sudden?
On the Main Form I have a Text box: Text153 which is linked to Date Last Modified in my Resumes Table.
Then I have this event on After Update:
Private Sub Form_AfterUpdate()
Me.Parent.Text153 = Now()
End Sub
Which was working fine but now seems to throw this error:
You Can't assign a value to this object and Highlights:
Me.Parent.Text153 = Now()
I'm not getting what I changed or did that would make it stop working all of the sudden?