passing data

  • Thread starter Thread starter ranswrt
  • Start date Start date
R

ranswrt

I have an array that collects data using a userform. How do I pass that
array to another userform to use?
Thanks
 
You userform is private

You need to delcare the array outside the sub as public. Remove any
declarations inside your subs where the array is being used.

Public abc(10)
 
Thanks

Joel said:
You userform is private

You need to delcare the array outside the sub as public. Remove any
declarations inside your subs where the array is being used.

Public abc(10)
 
Back
Top