pBe Posted January 6, 2011 Posted January 6, 2011 @ pBe, if I switch off "animate" does that mean I go to sleep? Not really, just take my word for it... I genuinely owe much of my learning so quickly, to those who took the time to point me in the right direction. Ditto That includes you Renderman, Alanjt, Irneb, David.....and many more Quote
muthu123 Posted January 10, 2011 Posted January 10, 2011 Dear Lee, After one Year i came to know that we can use animation withing the break points. Thank you so much. Your way of thinging and conveying it is amazing. I am sure Everybody will visit your website soon. So Try to keep improving more and more to hold the VLISP forever. Quote
Lee Mac Posted January 10, 2011 Author Posted January 10, 2011 After one Year i came to know that we can use animation withing the break points. Thank you so much. Your way of thinging and conveying it is amazing. I am sure Everybody will visit your website soon. So Try to keep improving more and more to hold the VLISP forever. Thanks Muthu! I'll try my best Quote
Lee Mac Posted July 27, 2013 Author Posted July 27, 2013 Just a quick note to inform you that I have now extensively updated this tutorial, rewriting several sections to include better explanations and cleaner graphics & animation. http://lee-mac.com/debugvlide.html Your comments & feedback as to how the tutorial may be improved are welcome. Lee Quote
wimal Posted July 30, 2013 Posted July 30, 2013 Add watch function is not working in my home p.c (cad 2006). without re installing can I rectify this. I mean which files should I replace . Already I replace vllib.dll but nothing happened. Quote
wimal Posted July 31, 2013 Posted July 31, 2013 When I try to get a value of a variable. It just display a Autocad messages ( Alert messages) containing in my old Lisp files. and cant exit the both lisp & cad. Quote
Lee Mac Posted July 31, 2013 Author Posted July 31, 2013 When I try to get a value of a variable. It just display a Autocad messages ( Alert messages) containing in my old Lisp files.and cant exit the both lisp & cad. Have you tried using the Watch Window with no AutoLISP programs loaded in the drawing session? Does the problem persist? The Watch Window data is stored in the *sdb-watcher-setting* section of the VLIDE.DSK file which resides in the path returned by (getvar 'roamablerootprefix) - you could try setting :NAME nil in this section, however, note that there is a strong warning not to edit this file, so proceed at your own risk. Quote
wimal Posted August 1, 2013 Posted August 1, 2013 Thank sir I will try to do that an inform you. Quote
wimal Posted August 2, 2013 Posted August 2, 2013 Thanks again . It is grate.I open the VLIDE.DSK file. There was lots of unnecessary codes connecting to varies old lisp files. So I removed the file from that folder. Now Watch Window is working correctlly. There is a another problem in my office P.C. The PREVIEW DCL IN EDITOR option is not wirking. The Dialog box to select the code is not opening. I think you have a solution for that also. Quote
irneb Posted August 2, 2013 Posted August 2, 2013 The PREVIEW DCL IN EDITOR option is not wirking. The Dialog box to select the code is not opening.I think you have a solution for that also. Unfortunately that is due to the Windows security settings: Because VLIDE was made quite some time ago (I think the 1st version of it was around 1997 for ACad R13/R14) it was made for the intent of working under Windows 95 / NT. So what happens when you use the DCL preview? It saves the DCL file to a temporary file in the same folder where acad.exe is stored and then runs some lisp to open it and show it. The issue is that in most cases the Windows security prevents a program from altering / adding stuff under the Program Files folders (which is where acad.exe is installed). So it fails to even write that temporary file. There are 3 solutions: Set your username to an administrator, so all programs you open can access all folders with write privileges. Dangerous, since now any virus can do anything to your PC. Set acad to start in administrator mode (right-click the shortcut on your desktop / start menu and select Properties, under Compatibility turn on "Run this program as an administrator). Less dangerous, since now it's only ACad which can do anything to any place. Write your own preview lisp - might be a bit complex, but you sure learn a lot . This way you can write it so it either directly opens the existing DCL, or even save it to the %TEMP% folder (which VLIDE should've done in the first place). Quote
wimal Posted August 2, 2013 Posted August 2, 2013 Thanks for your valuable advises. I think the option 3 is better. Quote
Recommended Posts
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.