B
Bill
In the process of creating some code structure, I inserted
some verification code to insure proper "addressabiltiy" to
some table fields taken from the current forms RecordSource.
In the segment of code below, both WorksID and Title are
table fields defined by the current query. WorksID (and others
that I also tried) display as expected. However, in attempting
to display the current value of "Title", I get the Access diagnostic:
"Object doesn't support this property or method" I've visually
verified that "Title" is indeed defined by the form's RecordSource
and that there's no conflict with the name of the text-box that
it is bound to.
I assume it's staring me in the face, but I still don't see the
problem?
Thanks,
Bill
Private Function Replicate()
'========================================================
'Replicate the current entry on a different volume.
'========================================================
MsgBox Me.WorksID
MsgBox Me.Title
End Function
some verification code to insure proper "addressabiltiy" to
some table fields taken from the current forms RecordSource.
In the segment of code below, both WorksID and Title are
table fields defined by the current query. WorksID (and others
that I also tried) display as expected. However, in attempting
to display the current value of "Title", I get the Access diagnostic:
"Object doesn't support this property or method" I've visually
verified that "Title" is indeed defined by the form's RecordSource
and that there's no conflict with the name of the text-box that
it is bound to.
I assume it's staring me in the face, but I still don't see the
problem?
Thanks,
Bill
Private Function Replicate()
'========================================================
'Replicate the current entry on a different volume.
'========================================================
MsgBox Me.WorksID
MsgBox Me.Title
End Function