Activex controls in Excel 2003

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I can't see the activex controls embedded in a worksheet - they're present
because I can click on them but they don't show on the sheet. How do I make
them visible?
 
Do this not through VBA.
Activate the sheet that the activex control is on. Pull up the controlbox
toolbar. Click on the design mode icon (to enter design mode). The control
should now be viewable. Right-click on the control and choose Properties.
Change the visible property to True.

Hope this helps.

Bill Horton
 
Or through VBA.

Worksheets("Sheet1").CommandButton1.Visible = True

Substitue your sheet name for "Sheet1" and whatever your control name is for
"CommandButton1".
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top