How to call an array from another module in VB?
To call an array from another module, make sure the array is declared as public in the other module. Then you can access the array using the module name and array name.
For example, assuming there is another module named Module1, where a public array named arr is declared:
Public arr(1 To 10) As Integer
To call this array in another module, you can do it like this:
Module1.arr(1) = 10
This way you can access and modify an array in another module.