Combobox row source

Petr Danes

Registered User.
Local time
Tomorrow, 00:23
Joined
Aug 4, 2010
Messages
150
It's been a long time since Access has managed to thoroughly stump me, but ...

I have a form called in dialog mode. It has numerous comboboxes, some of which have a huge number of records in their row source. I'm trying to use the technique of having a blank row source, then populating it only when needed, to reduce load time. The problem is that when I set the row source, it stays set after the form is closed. There is no warning about saving changes to the form, and even when I close it while specifically using the AcSaveNo option, it gets saved anyway. When I manually clear the row source and save it, everything is fine, until I run it again. Then, every combo that has its rowsource set while running stays set again.

I even added code to specifically cycle through all combos on the form and clear them in the form's close event. No luck, they still stay set.

What the **** do I have to do to make the row sources stay empty?
 
Strip your db to the minimum required to illustrate the problem, save it as a2007, run a compact repair, zip it , attach it here, provide info how to recreate the problem.
 
Do you have code that saves the form when you close it?
 
Strip your db to the minimum required to illustrate the problem, save it as a2007, run a compact repair, zip it , attach it here, provide info how to recreate the problem.

Thank you for the offer, but this app is pretty involved. Stripping it down to that point would be a huge amount of work, and I don't know if it would help anyway. It uses ODBC links to communicate with SQL Server, which would not be available on your test machine. The problem is simply that a change to a combobox's rowsource, set in code after the form opens, stays that way when the form is closed.

More specifically, a BLANK rowsource, set in code to a real source, retains that real source.
 
Last edited:
Do you have code that saves the form when you close it?

No. To close the form, I use the "DoCmd.Close acForm, Name" command, with no third parameter. I also tried specifying the third parameter, with all three permitted argument values. The rowsources get saved, regardless of whether I use acSaveNo, acSaveYes or acSavePrompt. I do nothing the save the form anywhere else in the code.

It even gets saved when I close the form with the red X, rather than via code.
 
So you have to answer the Question Pat has asked..
Do you have code that saves the form when you close it?
In other words, how are you performing the Form close?

If you are using CODE like..
Code:
DoCmd.Close acForm, Me.Name
then you can "unload" the Rowsource of the form, by saying no changes.. (the default would be prompt)
Code:
DoCmd.Close acForm, Me.Name[B], acSaveNo[/B]
Or even in the On Unload event set the RowSource = Null
 
Some more - the only way I can get the form to NOT save the rowsources is in the Close event, set them all back to "" and execute a specific "DoCmd.Save acForm, Name". Any deviation from that causes the unwanted rowsources to be saved.
 
Look in your code. Do you have
DoCmd.RunCommand acSave

That statement saves the FORM.

To save the current record, you would use
DoCmd.RunCommand acSaveRecord
 

Users who are viewing this thread

Back
Top Bottom