can I make access remember a last unbound number

  • Thread starter Thread starter efandango
  • Start date Start date
E

efandango

I want to 'store' a number (which changes frequently) in an unbound text box,
but do not want it stored in any tables. Can this be done?

The number is used to reference a user start point, but I want it to still
be there when the database is reopened.
 
efandango said:
I want to 'store' a number (which changes frequently) in an unbound text
box,
but do not want it stored in any tables. Can this be done?

The number is used to reference a user start point, but I want it to still
be there when the database is reopened.


It's *possible* to store it in a database or form property, but it's
probably easier to store it in a table. Then you can use a simple DLookup
to get it from the table when the form is opened.
 
Back
Top