Tabstrip control

G

Guest

How do I attach a control to the tabstrip in design mode? I would think I could drag the control to the tabstrip and it would be owned by that tabstrip. Does anyone have any suggestions?
 
R

Rob Bovey

Ric said:
How do I attach a control to the tabstrip in design mode? I would think I
could drag the control to the tabstrip and it would be owned by that
tabstrip. Does anyone have any suggestions?

Hi Ric,

I think you're confusing a TabStrip control with a MultiPage control. A
TabStrip control is not a container for other control like a MultiPage
control is.

A TabStrip is generally used when you have mostly identical layout for
all the tabs. The TabStrip control simply notifies you what tab is currently
active and your code treats the control accordingly. However, the controls
are exactly the same no matter what tab is selected.

A MultiPage control is used when you need a completely unique layout for
each tab. The pages on a MultiPage control are true containers, so when you
add a set of controls to one page, you will not see those controls when you
activate another page. All of them can be addressed directly from within the
UserForm, though, exactly as if they were placed directly on the form.

--
Rob Bovey, MCSE, MCSD, Excel MVP
Application Professionals
http://www.appspro.com/

* Please post all replies to this newsgroup *
* I delete all unsolicited e-mail responses *
 

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

Top