Thread: Array Help
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
[email protected] crferguson@gmail.com is offline
external usenet poster
 
Posts: 91
Default Array Help

Declare the array as Public right below the Option Explicit inside a
module. For example:

Option Explicit

Public arrTest()

Public Sub SomeSub...

End Sub...

etc...


Sandy wrote:
can I creat a public array, the contents of which are visinle to all
procuedures in the project? How do I do this?

Thanks