Why does my record not "synch" when I open the form from the switchboard? It opens fine when I simply double-click on the form icon - but nothing I've tried will get it to synch if opened directly from the switchboard. I have this in the sub-form's code module:
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ProductID] = " & Str(Nz(Me![List4], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
I'd simply like to be able to click on a record within a listbox ("List4") and jump to that record - which works fine when I open the form directly - but just sits there if I use the switchboard to open the form.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ProductID] = " & Str(Nz(Me![List4], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
I'd simply like to be able to click on a record within a listbox ("List4") and jump to that record - which works fine when I open the form directly - but just sits there if I use the switchboard to open the form.