I've got a little bit of code that runs when you enter data in a
datasheet view (which is a subform of the form you are in)
if rst!DateReceived >= 30 Then
Forms!DisposalRecords.Label90.Caption = (Date - rst!DateReceived) &
" Days"
however, when that runs to update the caption, it says that it cannot
find form DisposalRecords
I've also tried.
Me.Parent.DisposalRecords.Label90.Caption
I've tried
[Forms_Disposal].DisposalRecords.Label90.Caption (Where Disposal is
the parent form of DisposalRecords).
I've even tried [Forms]![DisposalRecords]![Label90].Caption ..
They all give me the same thing, or similar. Cannot find Form
"DisposalRecords"...
However, anything that's in the parent form (to the second subform)
can update it.. but if it's in the first Child (First Subform).. trying
to update the Second Subform of the parent, it bails out on me.
I hope this makes sense. I'm new to working with Access.. and more
specifically we are using Access 97.