-
Re: BricsCAD Command History and Position Lisp properties
You can use Logfileon to write a file its saved to your temp directory can be huge and you can look at it any time. Use logfileoff to turn off or svae as individual files with on & off.1 -
Re: Want to know how i can secure my lsp code
NOTE Fas is Autocad, DES is Bricscad. Multiple ways, (getvar '_pkser) Hard disk ID. Networkcard ID. getenv set a value in the registry. (setenv. Ping a remote server and get a user code. Check a serv…1 -
Re: Fillet Multiple Polylines / lines
When you do the sort of X or Y you make a list but I don't think your actually returning ss1 to the SS variable, but that also switches from a selection set to a list a different problem. Try changin…1 -
Re: Fillet Multiple Polylines / lines
If you type (AH:Fmulti) after loading it will work. You can make a new defun (defun c:Fmulti ()(AH:Fmulti)) so when you type fmulti on command line it will run. A C: means you can type the command fo…1 -
Re: How to make 'O-SNAP' changes default?
A little hidden function that works in some command like line. You can change the osnap setting in the middle of the command. (defun c:1 ( / )(setvar 'osmode 1)) ; can use 1 as not used, note in next…1
