C
Confused
I have a dialog form "GotoRecordDialog" When I select the records on it I
want the record on "CLECS2MainForm" to go to the same record. It says
invalid syntax on this part of the code below rst.FindFirst "CLEC_ID = " &
List2 I changed quotes around where I don't get an error, but it never
changes the records.
Private Sub Show_Record_Click()
Dim rst As DAO.Recordset
Set rst = Forms!CLECS2MainForm.RecordsetClone
Forms!CLECS2MainForm.Bookmark = rst.Bookmark
rst.FindFirst "CLEC_ID = " & List2
DoCmd.Close acForm, "GoToREcordDialog"
want the record on "CLECS2MainForm" to go to the same record. It says
invalid syntax on this part of the code below rst.FindFirst "CLEC_ID = " &
List2 I changed quotes around where I don't get an error, but it never
changes the records.
Private Sub Show_Record_Click()
Dim rst As DAO.Recordset
Set rst = Forms!CLECS2MainForm.RecordsetClone
Forms!CLECS2MainForm.Bookmark = rst.Bookmark
rst.FindFirst "CLEC_ID = " & List2
DoCmd.Close acForm, "GoToREcordDialog"