Author Topic: HOW GET "APPLOAD" SHOW Loaded Applications LIST  (Read 5055 times)

0 Members and 1 Guest are viewing this topic.

hunterxyz

  • Guest
HOW GET "APPLOAD" SHOW Loaded Applications LIST
« on: April 08, 2007, 09:58:26 AM »
HOW GET "APPLOAD" SHOW Loaded Applications LIST
Requests master help to answer, thanks ~

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: HOW GET "APPLOAD" SHOW Loaded Applications LIST
« Reply #1 on: April 08, 2007, 07:37:57 PM »
This may get you started ..

Return a fully qualified path list of loaded AutoLISP/Visual LISP files.
(dos_lisplist [T])

Return a fully qualified path list of loaded ARX applications.
(dos_arxlist [T])

required DosLib from http://www.en.na.mcneel.com/doslib.htm
kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: HOW GET "APPLOAD" SHOW Loaded Applications LIST
« Reply #2 on: April 08, 2007, 11:25:40 PM »
Just for example :
Code: [Select]
(dos_lisplist T)
(  "C:\\ACAD2008\\Express\\acetutil.fas"
   "C:\\ACAD2008\\Express\\acetauto.LSP"
   "C:\\ACAD2008\\Express\\acettest.fas"
   "C:\\ACAD2008\\support\\acad2008.LSP"
   "C:\\ACAD2008\\support\\acad2008doc.LSP"
   "C:\\CTA17_SteelTools\\Support\\CTA17_BaseLibrary.VLX"
   "C:\\CTA17_SteelTools\\Support\\CTA17_AliasLayers.LSP"
   "C:\\CTA17_SteelTools\\Support\\CTA17_DimReactor.LSP"
   "C:\\CTA17_SteelTools\\MenuAndStartup\\CTA17_Shortcuts.LSP"
   "C:\\CTA17_SteelTools\\Support\\CTA17_Tools.VLX"
   "C:\\CTA17_SteelTools\\MenuAndStartup\\cta17_main.mnl"
   "C:\\Documents and Settings\\XXXX\\Application Data\\Autodesk\\AutoCAD 2008\\R17.1\\enu\\Support\\acad.mnl"
   "C:\\SD\\_TSD17\\TSD_17_START.LSP"
   "C:\\SD\\_TSD17\\tsdmain17.mnl"   
)
Code: [Select]
(dos_arxlist T)
("C:\\ACAD2008\\AcApp.arx"
 "C:\\ACAD2008\\AcDblClkEditPe.arx"
 "C:\\ACAD2008\\acdim.arx"
 "C:\\ACAD2008\\aceplotx.arx"
 "C:\\ACAD2008\\Express\\Acetutil.arx"
 "C:\\ACAD2008\\AcGsConfig.arx"
 "C:\\ACAD2008\\achapi17.dbx"
 "C:\\ACAD2008\\achlnkui.arx"
 "C:\\ACAD2008\\acmgd.dll"
 "C:\\ACAD2008\\acmgdinternal.dll"
 "C:\\ACAD2008\\AcPrevInput.arx"
 "C:\\ACAD2008\\AcSecOpt.arx"
 "C:\\ACAD2008\\AcSign.arx"
 "C:\\ACAD2008\\aecmodeler50.dbx"
 "C:\\ACAD2008\\Appload.arx"
 "C:\\CTA17_SteelTools\\Support\\DosLib17.arx"
 "C:\\CTA17_SteelTools\\Support\\OpenDCL.17.ARX"
 "C:\\SD\\_TSD17\\SUPPORT\\AsdkHlrApi17.Dbx"
 "C:\\SD\\_TSD17\\SUPPORT\\TSD17.ARX"
 "C:\\ACAD2008\\oleaprot.arx"
 "C:\\ACAD2008\\vl.arx"
 "C:\\ACAD2008\\whohas.arx"
)
« Last Edit: April 08, 2007, 11:31:24 PM by Kerry Brown »
kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.

hunterxyz

  • Guest
Re: HOW GET "APPLOAD" SHOW Loaded Applications LIST
« Reply #3 on: April 09, 2007, 08:19:56 AM »
Thanks the explanation.
But asked except uses "doslib",
"VLISP" has the means?

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
I've reached the age where the happy hour is a nap. (°¿°)
Windows 10 core i7 4790k 4Ghz 32GB GTX 970
Please support this web site.

ronjonp

  • Needs a day job
  • Posts: 7527
Re: HOW GET "APPLOAD" SHOW Loaded Applications LIST
« Reply #5 on: April 09, 2007, 11:15:13 AM »
I'm not exactly sure what you are looking for, but I use this to find my loaded subroutines:

Code: [Select]
(defun rjp-subroutines (/ lst)
  (mapcar
    '(lambda (x)
       (if (wcmatch (strcase x) (strcase "rjp-*"))
(setq lst (cons (strcase x T) lst))
       )
     )
    (atoms-family 1)
  )
  (acad_strlsort lst)
)

All you have to do is change the filter to find what you are looking for...possibly C:*

Ron

Windows 11 x64 - AutoCAD /C3D 2023

Custom Build PC