Create a counter without binding it to a table.

  • Thread starter Thread starter Paul S
  • Start date Start date
P

Paul S

I want to create a counter on a form which tracks how many times it is
opened. The form is not bound to a table, nor do I want to bind the counter
to one either. Any help would be appreciated.
 
It would probably make better sense to use a table to store this, but if you
don't want to, you could create a custom property on the Form, and in
increment it in Form_Open.

If creating custom properties is new, here's a starting point:
http://allenbrowne.com/ser-09.html
 
Back
Top