please define this code

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

can someone tell me what this means?

Public gintContactID As Integer

It is code that is in my database module and I am not sure what it is?
Thanks.
 
Dear Sharon:

I believe the line means:

Create a "public" memory variable named "ginContactID" using the "integer"
data type. A public variable is visible to all procedures in the
application.


HTH
Fred Boer
 
It declares the variable 'gintContactID' as an Integer and (using the
keyword Public) makes it available to all procedures in the same MDB.
 
Back
Top