Author Topic: vlisp-?? command to add resources-files to FAS?  (Read 1193 times)

0 Members and 1 Guest are viewing this topic.

Peter2

  • Swamp Rat
  • Posts: 650
vlisp-?? command to add resources-files to FAS?
« on: October 04, 2017, 09:30:46 AM »
To add additional files to FAS VLX creates a PRV-file like this:

EDIT: Resources can only added to VLX; but nevertheless the solution will be interessting

Code - Auto/Visual Lisp: [Select]
  1. ;;; Visual LISP-Make-Datei [V1.0] 1111 saved to:[C:/TEMP] at:[10/4/17]
  2. (PRV-DEF (:target . "1111.VLX")
  3.          (:active-x . T)
  4.          (:separate-namespace)
  5.          (:protected . T)
  6.          (:load-file-list (:lsp "D:/zneu.lsp"))
  7.          (:require-file-list
  8.            (:lsp "D:/Civil/123.txt")
  9.          )
  10.          (:ob-directory)
  11.          (:tmp-directory)
  12.          (:optimization . st)
  13. )
  14. ;; EOF

What is the right "vlisp-..." command? I tried - exactly like the vlisp-compile-list, this code: and failed ..

Code - Auto/Visual Lisp: [Select]
  1. (vlisp-compile-list 'st
  2.         (list
  3.             "base.lsp"
  4.         )
  5.         "result.fas")
  6. (vlisp-inires-list 'st
  7.         (list
  8.             "x.txt"
  9.             "y.txt"
  10.         )
  11.         "result.fas")
  12.  

« Last Edit: October 04, 2017, 04:46:05 PM by Peter2 »
Peter

AutoCAD Map 3D 2023 German (so some technical terms will be badly retranslated to English)
BricsCAD V23

VovKa

  • Water Moccasin
  • Posts: 1626
  • Ukraine
Re: vlisp-?? command to add resources-files to FAS?
« Reply #1 on: October 04, 2017, 12:24:28 PM »
fas is a compiled lsp, nothing more
vlx is a package

Peter2

  • Swamp Rat
  • Posts: 650
Re: vlisp-?? command to add resources-files to FAS?
« Reply #2 on: October 04, 2017, 04:47:09 PM »
Thanks VovKa, I know. I want to create the "vlisp-..." commands (see above)
Peter

AutoCAD Map 3D 2023 German (so some technical terms will be badly retranslated to English)
BricsCAD V23