AD_Taylor
Well-known Member
- Joined
- May 19, 2011
- Messages
- 687
Is there any difference between:
and
?
They both seem to do the same thing as far as I can tell?
Just wondering as I have a file with multiple UserForms some using Activate and some using Initialize.
Should I consolidate them to one type?
Code:
Private Sub UserForm_Activate()
End Sub
and
Code:
Private Sub UserForm_Initialize()
End Sub
?
They both seem to do the same thing as far as I can tell?
Just wondering as I have a file with multiple UserForms some using Activate and some using Initialize.
Should I consolidate them to one type?