i'm trying to get a list to the left of the .sld files now i could ad the list_box to the correct place. but i cant get it to work. i dont know what i need to type in at key.
i found this code at web2.airmail.net/terrycad/AutoLISP-Code.htm
blk_lib.lsp
blk_lib.dcl the dcl file i have modified.
I edited my first one now the site should work where to get those files.
i cant past the code in here cause it is to long.
with those 3 codes it should work, the program
now i don't realy onderstand where to add your part
also each part of the library loads his own .def and .sld file at the location where the .dwg stands
its a verry nice tool that library but it need some tweeking for me.
am also looking to adjust some default values.
but that is for afhter this qeust
To use a listbox, you need a key. In the DCL file, the only thing you specify is which key should be used. The key however has to be defined into the lisp.
To define a key you need the following functions
(start_list key)
(add_list)
...
(end_list)
Many made simple sub routines to help, I've seen (one by MSasu and Lee Mac..)
This one is simple and understandable even for beginners (posted by Lee originally me think... )
If you want to change the lock (key in DCL), you'll need to make new key (and ideally get rid of unused one). Look and search you'll find 95% of what you need.