Saving combobox selections on unbound form

  • Thread starter Thread starter ExcelMan
  • Start date Start date
E

ExcelMan

I have an unbound form with a bunch of combo boxes on it. After the form is
opened and the user selects values from the combo boxes, I use the
selections to format some reports.

I don't have any problem grabbing the selections and passing them to the
reports, but when the form is opened again I want the user to see the
previously selected values.

Remember, this is an UNBOUND form. Is there a way I can get the selected
values to persist -- even after the form has been closed -- without having
to save them to a table? In particular, is it possible to set a property of
the combobox at runtime that will persist after the form and even after the
application, is closed?

Thanks.
 
No it's not possible.

If you don't want to save them to a table, you could use an INI file or the
Registry, or you could set database properties.
 
Back
Top