Question

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.

No correct solution

OTHER TIPS

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top