Visio Drawing Control
が配置されたフォームがあります。私は使用していますVisio Drawing Control 11.0
(私の PC には Visio 2003 がインストールされています)。フォーム読み込みイベントで、次のことを行います。
private void Form1_Load(object sender, EventArgs e)
{
this.axDrawingControl1.Src = @"D:\visio test\drawing.vsd";
Document currentStencil = this.axDrawingControl1.Document.Application.Documents.OpenEx(@"Basic_U.vss", (short)VisOpenSaveArgs.visOpenDocked);
Window stencilWindow = this.axDrawingControl1.Document.OpenStencilWindow();
}
アプリケーションを実行すると、ドキュメントに図形を追加すると、アプリケーションがクラッシュし、次AccessViolationException.
のエラー メッセージが表示Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
されます。ドキュメントを開いて、描画コントロールを使用して編集します。DrawingControl.Src
これを修正する方法はありますか?