Is there a way to print out all properties for a UserForm?
D Dick Kusleika Feb 11, 2009 #2 Is there a way to print out all properties for a UserForm? Click to expand... Run this code Sub GetUFProps() Dim uf As UserForm1 Set uf = New UserForm1 Stop End Sub Change UserForm1 to whatever your userform is called. When you hit the Stop line, choose Locals from the View menu. Expand uf. Do a screen capture and print.
Is there a way to print out all properties for a UserForm? Click to expand... Run this code Sub GetUFProps() Dim uf As UserForm1 Set uf = New UserForm1 Stop End Sub Change UserForm1 to whatever your userform is called. When you hit the Stop line, choose Locals from the View menu. Expand uf. Do a screen capture and print.