T
Ted
can someone help me (newbie) out (using a2k), am seeing this error when i try
to run:
Private Sub cboStudy__AfterUpdate()
Me.Bookmark = Me.RecordsetClone.Bookmark
Me.RecordsetClone.FindFirst "[Study#] = '" & Me![cboStudy#] & "'"
Me.Bookmark = Me.RecordsetClone.Bookmark
' MsgBox "My Form contains" & Forms![Screening
Log].RecordsetClone.RecordCount _
& " records.", vbInformation, "Record Count"
MsgBox Me.RecordsetClone!Reg# <--- generating "Item not found in
collection" error
' cboReg# = Me.RecordsetClone.Reg#
End Sub
i guess it's complaining that it can't for some reason understand what
"Reg#" is but it is the field name in the table underlying this form. isn't
that what i'm supposed to put here.
to run:
Private Sub cboStudy__AfterUpdate()
Me.Bookmark = Me.RecordsetClone.Bookmark
Me.RecordsetClone.FindFirst "[Study#] = '" & Me![cboStudy#] & "'"
Me.Bookmark = Me.RecordsetClone.Bookmark
' MsgBox "My Form contains" & Forms![Screening
Log].RecordsetClone.RecordCount _
& " records.", vbInformation, "Record Count"
MsgBox Me.RecordsetClone!Reg# <--- generating "Item not found in
collection" error
' cboReg# = Me.RecordsetClone.Reg#
End Sub
i guess it's complaining that it can't for some reason understand what
"Reg#" is but it is the field name in the table underlying this form. isn't
that what i'm supposed to put here.