To display document stencil window

  • Thread starter PraveenChintamani
  • Start date
P

PraveenChintamani

Hi

I need a solution to display document's stencil in the stencil pane of the
Visio 2003 on an aspx page.
Right now it will show the general stencil pane

Regards,
 
C

Chris Roth [ Visio MVP ]

This might work, not sure about ASP, though:

visio.Application.DoCmd(1089)

1089 = visCmdWindowShowMasterObjects

Basically, you're executing a menu command by using it's ID.

--

Hope this helps,

Chris Roth
Visio MVP
 
P

PraveenChintamani

Hi

Thanks for the reply, I am very new to this, can you elaborate little more
on this.

Regards,
-Praveen
 
C

Chris Roth [ Visio MVP ]

Sub ShowStencilWin

dim win as visio.window

win = visControl.Window

win.Application.docmd(1089)

End Sub


???

--

Hope this helps,

Chris Roth
Visio MVP
 

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