Jump to content

Recommended Posts

Posted

Hi all

 

Is is possible to prevent a user from viewing ldata stored with an entity I means somehow hide the data so that vlax-ldata-list does not show the ldata stored.

 

Thanks.

Posted

You can make your Lisp file with a new application wizard by Visual Lisp Editor and that will cover all data of that Lisp file and will work normally....

 

regards

 

Tharwat

Posted

Sorry Tharwat I could not understand what you mean can you please explain your reply.

 

Thanks.

Posted

In Visual Lisp Editor go menu->File->Make Application->New Application Wizard .........and follow up the steps untill you reach the end .

So the file that you will get will be secured and can be opened but with no Lisp codes at all .

try it ....

 

Good Luck

 

Tharwat

Posted
Hi all

 

Is is possible to prevent a user from viewing ldata stored with an entity I means somehow hide the data so that vlax-ldata-list does not show the ldata stored.

 

Thanks.

No, you can't hide it. If it could be hidden, it would be able to be extracted and read.

 

tharwat313, you are way off. He's wanting to hide ldata (similar to xdata), not encrypt his LISP file.

Posted

Yahhh

I thought he meant Lisp file data . if it is so . so he can not :oops:

 

Sorry for misunderstanding

Tharwat

Posted
Yahhh

I thought he meant Lisp file data . if it is so . so he can not :oops:

 

Sorry for misunderstanding

Tharwat

No harm. However, he posted a function that references ldata. If you didn't recognize it, you should have looked it up in the Help files before responding.

Posted

> Tharwat, I agree with Alan: correct information far outweighs a quick response.

 

> GPD,

 

You cannot hide it in as much as preventing the user from extracting it (using LISP anyway). However you can disguise it....

 

eg.. using ASCII code shifting:

 

(defun eh? ( x )
 (vl-list->string
   (mapcar
     (function
       (lambda ( x ) (boole 6 x 42))
     )
     (vl-string->list x)
   )
 )
)

 

(eh? "y_XZXCYO\013")

  • 2 months later...
Posted

What are some good uses for vlax-ldata? Why would you want to hide it?

Just trying to get a better understanding

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...