Nede to make Visio layers visible in VBA by using a combo box

O

olivero

Hi,

I can't seem to figure out how to make layers on a Visio page visible,
programatically. I've got a combo box that I've populated using the AddItem
method. It contains a list of the layers I want to have accessible to the
user. Now I need it to cause the appropriate layer to become visible when an
item from the list is chosen.

I've searched and tried the online help, but I can't seem to find the right
sequence.

Any help would be much appreciated!

Thanks,
Oliver
 
J

JuneTheSecond

ActivePage.Layers(1).CellsC(visLayerVisible) = 1
may visualize layer 1.
you can see it with macro recorder.
 

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