Here is my current code:
Getting a Complile Error on the "FindFirst" line, "Method or Data Member Not Found". Is there an object library that I need to enable in Resources?
Private Sub frmFormView_AfterUpdate()
Dim rsClone As ADODB.Recordset
Set rsClone = Forms!FrmBilling!subBilling.RecordsetClone
dbGuidFLD = Me.subBilling.Form.RecordsetClone!ID
Debug.Print "DBGUIDFld = " & dbGuidFLD
strGUID = StringFromGUID(Me.subBilling.Form.RecordsetClone.Fields("ID"))
Debug.Print "strGUID = " & strGUID
If frmFormView.value = 1 Then
Me.subBilling.SetFocus
DoCmd.RunCommand acCmdSubformFormView
ElseIf frmFormView.value = 2 Then
Me.subBilling.SetFocus
DoCmd.RunCommand acCmdSubformDatasheet
End If
rsClone.FindFirst "StringFromGUID(" & dbGuidFLD & ") = " & Chr(34) & strGUID & Chr(34)
If rsClone.NoMatch Then
MsgBox "Cannot find strGUID"
Else
Forms!FrmBilling!subBilling.Bookmark = rsClone.Bookmark
End If
RefreshForm
End Sub