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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top