How do I pass variables from a mosule to a userform?

C

Chris

Hi once again. I am trying to use a standard userform to answer different
questions at different times. My problem is that the values of the variable
in the module are not being passed into the userform code. Is there a way to
accomplish this task?
 
D

David M. Marcovitz

At the top of your module, declare the variables as public, as in:

Public myVariable As String

--David

--
David M. Marcovitz
Microsoft PowerPoint MVP
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.PowerfulPowerPoint.com/
 
Top