I can't find a Frames collection in userform. How to loop through all frames on a UF?
Thanks a lot!
Code:
Dim c As MSForms.Controls
For Each c In UTool.[COLOR=#ff0000]Controls[/COLOR]
If TypeName(c) = "Frame" Then
c.BorderStyle = fmBorderStyleNone
End If
Next
Thanks a lot!