Visio ActiveX control printing?

A

andrewLLL

Does anybody know how to print one drawing page in Visio
ActiveX control sitting in a VB form? It seems that the
normal way of printing doesn't work with the following
code:

dim dummy as object
set dummy = drawingcontrol1.window.activepage
dummy.print 'doesn't work anymore

Thanks

Andrew
 
A

Abraham Mathew [MSFT]

The help documentation for the Print method in Visio shows how to get it to
work.
You might also try the PrintOut method which is new in Visio2003 which gives
you a lot more control over printing.
 
Top