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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top