Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do you create a public array in access 2002 1

Status
Not open for further replies.

jlt206

Programmer
Apr 26, 2004
5
0
0
CA
I have been trying to create a public array in Acccess and I haven't found the correct method as yet.

Can anyone help?

Thanks!
 
Declare your array in a module (not a form) as (for example)
[blue][tt]
Public myArray(50) As String
[/tt][/blue]
You can then reference "myArray" anywhere in your project.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top