Combo boxes stop working after returning to form

daninthemix

Registered User.
Local time
Today, 18:39
Joined
Nov 25, 2005
Messages
41
Hello all,

I have combo boxes populated with all values in a particular field, then shunt the form onto that record (standard combo box for selecting records from a list in other words).

Problem is, these boxes seem to stop working if I leave the form for another and then return to it.

Here's the code Access puts behind:

-----------
Set SerialRS = Me.Recordset.Clone
SerialRS.FindFirst "[Serial Number] = '" & Me![Combo60] & "'"
If Not SerialRS.EOF Then Me.Bookmark = SerialRS.Bookmark
-----------

The form may be opened and closed via other processes (although never unloaded), but when I come back to it these combo boxes always stop working! Why?
 
Try this;

On CURRENT SUB put
Me!Combo60.Requery
 
Doesn't work :(

Any other ideas?
 
daninthemix said:
Here's the code Access puts behind:

-----------
Set SerialRS = Me.Recordset.Clone
SerialRS.FindFirst "[Serial Number] = '" & Me![Combo60] & "'"
If Not SerialRS.EOF Then Me.Bookmark = SerialRS.Bookmark
-----------

Where is this code? In what event is it placed?
 

Users who are viewing this thread

Back
Top Bottom