Keep some information in Form View mode.

  • Thread starter Thread starter Albert
  • Start date Start date
A

Albert

Hello ,

Have any way I can save some information in form view mode and next time I
open this form, That information still be there ? I'ld like to keep some
default information that user entry.

TIA,
Albert
 
Have the Form_Close or Form_Unload event procedure save the information in a
table, or perhaps in the system Registry (using the SaveSettings?
statement). Then have the Form_Open or Form_Load event retrieve the
information from where it was stored.

HTH,
TC
 
Another way that you could do this is have a table to
hold/Save the last record look up information. On the
startup event, you could retrieve that key information
from the table to use as a filter the form.
 
Back
Top