Frame hides controls on UserForm


Posted by Stan on October 02, 2001 11:40 AM

When I add a frame to a UserForm that contains controls, the controls become hidden. I used the "Send Backward" for the frame and the controls appear. But when I run the application, the controls are hidden again. What am I doing wrong?



Posted by Robb on October 03, 2001 2:15 AM

Stan

Try including code to set the visibility of the frame:

Frame12.Visible = False

Of course, replace the name I used (Frame12) with the appropriate
name.

When you want the frame to be seen, just use the reverse:

Frame12.Visible = True

Any help?

Regards