VBA passing information between differnt User Forms
Not sure i understand exactly what you're doing but it looks like your
variable isn't being passed between the forms try in UF2 if you
haven't unloaded UF1
UF2_Initialize()
UF2.flagRogue.value = UF1.flagRogue.value
end sub
Personally i prefer using global variable as you're not dependant on
userform life.
HTH
|