@Wheelie22 wrote:
....
And with current directory, i mean, the directory the active drawing is in. ....
As for that choice, this won't get it into your Open File dialog boxes, but I've used this DCF command [= open a Drawing in the Current Folder] for many years, to have the file navigator open up in that folder instead of the last one used in an Open command:
;;; DwgCurrentFolder.lsp
;;; to open a Drawing in the Current drawing's Folder
(defun C:DCF ()
(vla-activate
(vla-open
(vla-get-documents
(vlax-get-acad-object)
)
(getfiled "Select drawing:" (getvar 'dwgprefix) "dwg" 0)
)
)
)
(prompt "\nType DCF to open a Drawing in the Current Folder.")
Have that loaded by something like acaddoc.lsp, and you can type DCF or put it into a menu item somewhere that you can pick on.
Kent Cooper, AIA