C
Chip Pearson
Howard,
Declare the parameter in the called function As Object or As FormName. E.g.,
Sub AAA()
BBB UserForm1
UserForm1.Show
End Sub
Sub BBB(UF As UserForm1)
UF.Caption = "this is new caption"
End Sub
--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com (e-mail address removed)
Declare the parameter in the called function As Object or As FormName. E.g.,
Sub AAA()
BBB UserForm1
UserForm1.Show
End Sub
Sub BBB(UF As UserForm1)
UF.Caption = "this is new caption"
End Sub
--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com (e-mail address removed)