Author Topic: how to protect my lisp file  (Read 3604 times)

0 Members and 1 Guest are viewing this topic.

flowera

  • Guest
how to protect my lisp file
« on: July 03, 2006, 05:08:26 AM »
Hi,
This is my first post of this forum.
I have done AutoLISP program,How to protect my LISP program?

jonesy

  • SuperMod
  • Seagull
  • Posts: 15568
Re: how to protect my lisp file
« Reply #1 on: July 03, 2006, 05:24:47 AM »
Hi Flowera

Welcome to theswamp.
Unfortunately I dont know how to program in lisp, but I'm sure one of our programming experts will be along shortly to help you

Tracey
Thanks for explaining the word "many" to me, it means a lot.

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: how to protect my lisp file
« Reply #2 on: July 03, 2006, 05:42:28 AM »
Have a quick look here, for starters ..
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.

flowera

  • Guest
Re: how to protect my lisp file
« Reply #3 on: July 03, 2006, 06:01:23 AM »
I couldn,t understand for Autocad Help

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: how to protect my lisp file
« Reply #4 on: July 03, 2006, 06:29:16 AM »
What DO you understand ?  ... tell what you know.
What don't you understand ?
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.

jonesy

  • SuperMod
  • Seagull
  • Posts: 15568
Re: how to protect my lisp file
« Reply #5 on: July 03, 2006, 06:57:53 AM »
Kerry, I have a feeling that flowera doesnt speak English too well (sorry if this is not the case)
Maybe they dont understand the language in the image file? (just a thought)
Thanks for explaining the word "many" to me, it means a lot.

Andrea

  • Water Moccasin
  • Posts: 2372
Re: how to protect my lisp file
« Reply #6 on: July 03, 2006, 09:07:21 AM »
Code: [Select]
(defun c:LISP2FAS ( / str1 num1 str2)
  (setq str1 (getfiled "LISP file..." "" "LSP" 2))
  (setq num1 (strlen str1))
  (setq str2 (strcat (substr str1 1 (- num1 4)) ".fas"))
  (vlisp-compile 'st str1 str2)
)
Keep smile...

flowera

  • Guest
Re: how to protect my lisp file
« Reply #7 on: July 03, 2006, 10:46:24 AM »
Thank u.
I have protected my lisp file.
Hi friends I understand ur english very well.