문제

how to use openfiledialog in auctocad using vb.net in a dll application for opening a file. Because no forms i used in the dll application. i am using imports autodesk.autocad.windows in the application.

올바른 솔루션이 없습니다

다른 팁

You will need to use:

var pfo = new Autodesk.AutoCAD.EditorInput.PromptFileOptions(" message");

//add filter

var pfno = Application.DocumentManager.MdiActiveDocument.Editor.GetFileNameForOpen(pfo);

This is c# so you will need to transpose.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top