如何在dll应用程序中使用vb.net打开文件,在auctocad中使用openfiledialog。因为我在dll应用程序中没有使用任何表单。我在应用程序中使用import autodesk.autocad.windows。
答案 0 :(得分:0)
您需要使用:
var pfo = new Autodesk.AutoCAD.EditorInput.PromptFileOptions(" message");
//add filter
var pfno = Application.DocumentManager.MdiActiveDocument.Editor.GetFileNameForOpen(pfo);
这是c#所以你需要转置。