devxlogo

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.

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  How Engineering Leaders Spot Weak Proposals

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.