B
Bill
I'm wanting to understand the HELP text
referring to RecordsetClone and the
accompanying use of Bookmark. Obviously,
I haven't yet found that, as the following
code fails with a 7951 reference error.
tbBalance is one of the fields in the forms
RecordSource query.
Private Sub tbTransAmt_DblClick(Cancel As Integer)
With Me.RecordsetClone <<<<<<<error here
.FindLast "FolioID = " & Me.lblTitle3
Me.tbTransAmt = Me.RecordsetClone.tbBalance
End With
Call TestPostExclusion
End Sub
referring to RecordsetClone and the
accompanying use of Bookmark. Obviously,
I haven't yet found that, as the following
code fails with a 7951 reference error.
tbBalance is one of the fields in the forms
RecordSource query.
Private Sub tbTransAmt_DblClick(Cancel As Integer)
With Me.RecordsetClone <<<<<<<error here
.FindLast "FolioID = " & Me.lblTitle3
Me.tbTransAmt = Me.RecordsetClone.tbBalance
End With
Call TestPostExclusion
End Sub