Hi People!,
i have the following code :
Dim RstCatAType As DAO.Recordset
Set RstCatAType = Me.RecordsetClone
RstCatAType.FindFirst "CategoryA = '" & Me!CmboCategoryA & "'"
Me.Bookmark = RstCatAType.Bookmark
Set RstCatAType = Nothing
Which i bound to the afterupdate event on a combobox. The code work fine when it is the only form open, however when the form is open form a switchboard menu, it errors because the switich board form is still open . How can i get it to run whilst another form is open in the background, I.E the switchboard. Can this be done ?
Would be grateful for any help here please.
Thanks
Milan
i have the following code :
Dim RstCatAType As DAO.Recordset
Set RstCatAType = Me.RecordsetClone
RstCatAType.FindFirst "CategoryA = '" & Me!CmboCategoryA & "'"
Me.Bookmark = RstCatAType.Bookmark
Set RstCatAType = Nothing
Which i bound to the afterupdate event on a combobox. The code work fine when it is the only form open, however when the form is open form a switchboard menu, it errors because the switich board form is still open . How can i get it to run whilst another form is open in the background, I.E the switchboard. Can this be done ?
Would be grateful for any help here please.
Thanks
Milan