Message 1 of 2
MyAppsPaths stored in Lisp variables...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I am needing to write some sort of a mechanism (in VBA) that would provide search paths for our companies AutoCAD applications?
Let me give some background first prior to your answering…
Currently every one of our several dozen or more Applications are written in lisp. All these are full blown apps that do many things including data extraction and material takeoffs, reporting functions, and AutoCAD automation. The menu picks are accessed from an Enterprise CUI file… which is accompanied by an MNL of the same name: OurComp.cui and OurComp.mnl
Currently, we have three global Lisp variables that get set within the MNL file that point to our Jobs, Applications, and Temp folders that our lisp applications use. Using this approach gives us the flexibility to move our applications to different location, only having to change the value of ‘e_pdr’ (program directory) lisp variable in a single location…
We are moving more into VBA… and so I would like to build the same approach for our VBA apps as we move foreword…
Question: How would I go about writing this installation ‘search path’ application in VBA. Or, is there a way that our VBA applications could read these lisp vars to get path info?
Let me give some background first prior to your answering…
Currently every one of our several dozen or more Applications are written in lisp. All these are full blown apps that do many things including data extraction and material takeoffs, reporting functions, and AutoCAD automation. The menu picks are accessed from an Enterprise CUI file… which is accompanied by an MNL of the same name: OurComp.cui and OurComp.mnl
Currently, we have three global Lisp variables that get set within the MNL file that point to our Jobs, Applications, and Temp folders that our lisp applications use. Using this approach gives us the flexibility to move our applications to different location, only having to change the value of ‘e_pdr’ (program directory) lisp variable in a single location…
We are moving more into VBA… and so I would like to build the same approach for our VBA apps as we move foreword…
Question: How would I go about writing this installation ‘search path’ application in VBA. Or, is there a way that our VBA applications could read these lisp vars to get path info?