Visio 2003 - Snap&Glue Dialog Box

E

Evelyn Reichel

Hi everybody!

I'm implementing a c# application with the visio drawing control. In
my application I want to open the snap&glue dialog box (from the tools
menu) through a menu item. I didn't find an appropriate viswintype in
the visio 2003 sdk documentation.

Is this possible at all? Please help me out.

Many thanks.
 
P

Paul Herber

Hi everybody!

I'm implementing a c# application with the visio drawing control. In
my application I want to open the snap&glue dialog box (from the tools
menu) through a menu item. I didn't find an appropriate viswintype in
the visio 2003 sdk documentation.

Is this possible at all? Please help me out.

Many thanks.

visCmdOptionsSnapGlueSetup
 
J

John Goldsmith

Hello Evelyn,

You could try the DoCmd method of the Application object:

Application.DoCmd (visCmdOptionsSnapGlueSetup)

....and you'll just have to handle the error if the OK or Canel buttons are
clicked with no changes made.

Best regards

John

John Goldsmith
www.visualSignals.co.uk
 
E

Evelyn Eckhart-Reichel

Hello Evelyn,

You could try the DoCmd method of the Application object:

Application.DoCmd (visCmdOptionsSnapGlueSetup)

...and you'll just have to handle the error if the OK or Canel buttons are
clicked with no changes made.

Best regards

John

John Goldsmithwww.visualSignals.co.uk

thanks both of you for the fast reply. Now I know where the error
comes from. thanks again
 

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