devxlogo

Global Arrays

Global Arrays

Question:
I have a simple 2 form program with an array spanning both forms (i.e.MyArray(0),..MyArray(3) are on form 1 and MyArray(4),..MyArray(6) are on form 2). How can I declare MyArray as Global? I tried putting “Global MyArray(0 To 6) As Integer” in a “Global” module, but when I try to access “MyArray(4)” in “form1″, ” load”, I get that my array is out of bounds. What am I doing wrong? Thanks in advance!!

Answer:
If you want to use an array in more than one form, declare it in a codemodule. Don’t redeclare it in the form…that is probably the error youare getting. Add it to the declarations section of the code module and itwill be available throughout your application.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist