I need to be able to programtically loop through a project's variables. For example
Project1:
Private sub test()
myvariable =inputbox("boolean variable name to set?")
for i = 1 to 99
if myvariable = project2.variable then
project2.variable=True
exit for
endif
next
End sub
This is not the code to make it work but how I would like to approach it. Any ideas? Thank you!!
Project1:
Private sub test()
myvariable =inputbox("boolean variable name to set?")
for i = 1 to 99
if myvariable = project2.variable then
project2.variable=True
exit for
endif
next
End sub
This is not the code to make it work but how I would like to approach it. Any ideas? Thank you!!