please define this code

S

Sharon

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.
 
F

Fred Boer

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
 
B

Brendan Reynolds

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