0
0rbital
In the drawing tool in .Net C# I'm doing this to close the shapes window:
//get rid of shapes search window
Visio.Window winShapeSearch =
axDrawingControl1.Window.Windows.get_ItemFromID((int)Visio.VisWinTypes.visWinIDShapeSearch);
winShapeSearch.Visible = false;
winShapeSearch.Close();
Which works fine on my development box. On the production box however it
still appears. There's nothing in it just a blank shapes window. Why would
this be happening?
Thanks.
//get rid of shapes search window
Visio.Window winShapeSearch =
axDrawingControl1.Window.Windows.get_ItemFromID((int)Visio.VisWinTypes.visWinIDShapeSearch);
winShapeSearch.Visible = false;
winShapeSearch.Close();
Which works fine on my development box. On the production box however it
still appears. There's nothing in it just a blank shapes window. Why would
this be happening?
Thanks.