I'd like to insure that the user can't get his mouse pointer into the Visio instance while I'm creating the document. Is there a way to do this (see below) so that nothing pops up on the task bar? Having the drawing run as fast as possible is also very important.
m_visioApp = new Visio.Application();
Once the document has been created, I'm using this to save it:
string docPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.MyDocuments) + @"\test\Vigilant.vsd"; m_activeDocument.SaveAs(docPath);and then loading the file into the Visio viewer OCX. Is there a way to send m_activeDocument to the viewer without writing it to disk first?