Declare a Variable

  • Thread starter Thread starter Greg Ripper
  • Start date Start date
G

Greg Ripper

Ok, I'm a MASSIVE access rookie. I received help last night on a problem,
but the response, thanks to Rick Brandt who saves me on an hourly basis,
wants me to declare a variable MyPageVar=Me.[page]

Where do I declare that?
It is going to be used to keep a continious running page number in the footer
of reports.
Thanks as Always,
Rip
 
Greg said:
Ok, I'm a MASSIVE access rookie. I received help last night on a problem,
but the response, thanks to Rick Brandt who saves me on an hourly basis,
wants me to declare a variable MyPageVar=Me.[page]

Where do I declare that?
It is going to be used to keep a continious running page number in the footer
of reports.

In the declarations section (at the top, before any
procedures) of a standard module (not a form/report/class
module).

Public MyPageVar As Integer
 
Back
Top