+ Post New Thread
Page 5 of 421 FirstFirst ... 3 4 5 6 7 15 55 105 ... LastLast
Threads 101 to 125 of 10517

Forum: AutoLISP, Visual LISP & DCL

Questions from beginner to advanced. Tell us about good sources of free lisp and post your own routines for testing.
Code posting guidelines

  1. FAQ Article Sticky Thread Sticky: Suggested changes to this forum

    The "AutoLISP, VBA, the CUI & Customisation" forum has become a very lively part of the AutoCAD Forums and probably needs a structural review in order to acommodate growth in the future. I'm...

    Started by CADTutor‎, 14th Jun 2010 09:44 am
    8 Pages
    1 2 3 ... 8
    • Replies: 75
    • Views: 21,101
    12th Aug 2010 08:09 am Go to last post
  2. FAQ Article Sticky Thread Sticky: Code posting guidelines

    Code posting guidelines When you are posting AutoLISP or VBA code in these forums, there are some simple guidellines you should observe in order to make life easier for you and for others. ...

    Started by CADTutor‎, 18th Sep 2006 10:46 pm
    • Replies: 0
    • Views: 35,800
    18th Sep 2006 10:46 pm Go to last post
  1. Litle help, lisp error

    I'm trying to linking a string with real value that is in a variable, but is giving error. Can you help me? The little lisp only divides two numbers and displays the prompt informed with the...

    Started by Madruga_SP‎, 29th May 2013 10:33 pm
    • Replies: 3
    • Views: 164
    30th May 2013 12:08 pm Go to last post
  2. Request for Lisp to draw Duct Elbow

    I would be thankful if someone would like to share their lisp for creating duct elbows (both round & rectangular). For those that are not in the HVAC field...I would like to request a lisp that...

    Started by LSA‎, 25th Apr 2006 06:12 pm
    2 Pages
    1 2
    • Replies: 17
    • Views: 10,620
    30th May 2013 09:01 am Go to last post
  3. Execute lisp automatically while a command is running?

    Hello, I run a vertical product.it has a command that creates room space with closed polyline on layername.i need to copy to clip automatically the text (which represents the room name) found...

    Started by fathihvac‎, 26th May 2013 12:54 pm
    • Replies: 6
    • Views: 374
    29th May 2013 05:01 pm Go to last post
  4. How to create texts to "name" closed polylines and export "names" and area to excel

    Hello everyone, I am a brand-new member of this forum and I would really appreciate some help. I'm in need of a routine do to the following: --Add text to represent a closed polyline label. --Then...

    Started by scremin‎, 15th Jun 2012 05:34 am
    2 Pages
    1 2
    • Replies: 18
    • Views: 1,532
    29th May 2013 02:32 pm Go to last post
  5. Replace old xref files with a set of new xref files

    Hi Good Afternoon, evening, morning, I am looking for any assistance possible, as from the title i am looking at some kind of Lisp code that will change the X-Ref file name from 'x' to 'y' for...

    Started by SimonC‎, 28th May 2013 09:40 am
    2 Pages
    1 2
    • Replies: 11
    • Views: 316
    29th May 2013 11:29 am Go to last post
  6. Auto insert blocks on pline points possible?

    Wasn't sure if it I could have a better luck starting a new post (somewhat) continuing from http://www.cadtutor.net/forum/newthread.php?do=newthread&f=21 ..but as it goes Lee Mac posted one of my...

    Started by jake77777‎, 3rd Oct 2010 05:45 pm
    • Replies: 8
    • Views: 1,888
    29th May 2013 09:03 am Go to last post
  7. string to list of real numbers

    Hi, I have a string that I obtain from excel (0.0 1.2 1.2 1.2), I can convert that to a list so that it is ("0.0" "1.2" "1.2" "1.2") how can I convert it that each string in the list is...

    Started by feargt‎, 28th May 2013 07:13 am
    • Replies: 9
    • Views: 278
    29th May 2013 08:19 am Go to last post
  8. List of Hatch patterns

    vla-get-dimstyles Like that how can get list of hatch patterns

    Started by wimal‎, 19th May 2013 11:35 am
    • Replies: 8
    • Views: 452
    28th May 2013 11:15 am Go to last post
  9. Draw polyline along with 2 or more adjacent closed polylines

    Hi i required a lisp to draw a poly line along with 2 closed poly lines. If i pick 2 vertexes on 2 polygons, 1 new poly line should be created between these two points along with polygon walls. can...

    Started by chvnprasad‎, 25th Mar 2012 09:47 am
    3 Pages
    1 2 3
    • Replies: 24
    • Views: 2,179
    28th May 2013 10:33 am Go to last post
  10. Question Add objects to a new Selection Set

    Hey guys, I’ve got this routine which I have been working on… it is a modified version of another routine which Carry helped me create for ProSteel. The philosophy behind the routine is that I...

    Started by lamensterms‎, 28th May 2013 03:13 am
    • Replies: 7
    • Views: 165
    28th May 2013 06:58 am Go to last post
  11. Compile without VLISP

    I found this code that compiles the files directly, without those annoying errors from VLISP. (defun c:FAS (/ name lispname outfilename findfas rewritefas) (setvar "cmdecho" 0) (setq name...

    Started by SCaldeira‎, 27th May 2013 04:34 pm
    compile, vlisp
    • Replies: 6
    • Views: 320
    27th May 2013 11:59 pm Go to last post
  12. Add to list inside a window both text and mtext

    (setq ss3 (ssget "C" pt1 pt2 '((0 . "text" )))) How can I add to this set (ss3) mtext also.

    Started by wimal‎, 23rd May 2013 07:00 am
    • Replies: 9
    • Views: 360
    27th May 2013 10:02 am Go to last post
  13. Text hights and text command with lisp codes

    (setq pp (getpoint"\nPick apoint ")) (command "text" pp 100 0 "TEST" ) When the current text style has not feed a text hight this code is working nicely. But when the current style has a...

    Started by wimal‎, 27th May 2013 07:10 am
    • Replies: 4
    • Views: 244
    27th May 2013 08:57 am Go to last post
  14. Explode Multiline text to one single line text?

    Hello, I need a lisp to explode a text written on multiline text to only one single line text. Example: "First floor meeting room" When exploded must gives one single line text:...

    Started by fathihvac‎, 26th May 2013 01:11 pm
    • Replies: 5
    • Views: 290
    26th May 2013 02:31 pm Go to last post
  15. Unhappy "educational...." at the plotting

    how we can make banner such as "educational...." at the plotting

    Started by hosyn‎, 21st May 2013 10:41 pm
    • Replies: 6
    • Views: 387
    26th May 2013 03:35 am Go to last post
  16. Autonumbering of selected rectangles

    Hi there, I have seen a lot of autonumbering of blocks lisp examples in this forum which is a bit complicated for me. But i just need a simple lisp that will automatically place the number in the...

    Started by KENBE‎, 24th May 2013 11:22 am
    2 Pages
    1 2
    • Replies: 12
    • Views: 548
    25th May 2013 01:04 pm Go to last post
  17. Error Handling

    I think all of us know what a pain it can be to run a lisp which either crashes or someone presses the Esc key too soon. Some real problems can result from this especially if you've reset environment...

    Started by Bill Tillman‎, 24th May 2013 07:18 pm
    • Replies: 4
    • Views: 233
    25th May 2013 09:32 am Go to last post
  18. Smile Text to excel sheet

    For a certain situation it would be rather helpful for a colleague of mine to have a .lsp routine that would collect all the text elements out of each drawing in a certain folder and put them all in...

    Started by Peter K‎, 2nd Jun 2009 02:45 pm
    6 Pages
    1 2 3 ... 6
    • Replies: 53
    • Views: 7,506
    25th May 2013 09:30 am Go to last post
  19. Lisp routine for inserting brackets around text

    Hi! I was hoping if anyone has a lisp routine for inserting brackets around text by clicking on the text and wrapping the text in brackets or something along those lines rather than clicking on...

    Started by danthecadman‎, 22nd May 2013 12:29 am
    2 Pages
    1 2
    • Replies: 16
    • Views: 496
    25th May 2013 06:43 am Go to last post
  20. adding data to polyline and extracting this data to table?

    Hi, Firstly I'd like to wish everyone a happy new year but it seems clear for some it has not been the best start possible, fingers crossed things improve for ye guys. There may already be a...

    Started by feargt‎, 8th Jan 2009 08:02 pm
    3 Pages
    1 2 3
    • Replies: 22
    • Views: 8,001
    24th May 2013 08:04 pm Go to last post
  21. add members to a list by looping

    Hi I want simply to add my picked points number to a list and when I press enter a prompt will tell how many members there are in the list (defun C:TEST (/ a lst) (setq lst) (while ...

    Started by samifox‎, 24th May 2013 04:52 pm
    • Replies: 4
    • Views: 211
    24th May 2013 07:14 pm Go to last post
  22. looping through list?

    I have this rough draft code I'm building to be used as a layer checker but I also need to to loop through once using the first item in the list, then loop through a second time using the second item...

    Started by Dustin11‎, 24th May 2013 05:48 pm
    • Replies: 3
    • Views: 183
    24th May 2013 06:57 pm Go to last post
  23. Activate a Viewport and Zoom Object

    I have a simple layout tab which contains a single viewport. In this viewport I want to zoom around an ole object which was pasted into model space based on some other input. The size of this ole...

    Started by Bill Tillman‎, 24th May 2013 01:35 pm
    • Replies: 3
    • Views: 213
    24th May 2013 06:53 pm Go to last post
  24. Dimension values to Excel

    Hi guys! Im stuck with this boring routine of reading dimension values and typing them in Excel columns for furtegr calculations. My dimenison are alinged in one horizontal line (see picture; blue...

    Started by Butch‎, 4th Nov 2009 04:44 pm
    11 Pages
    1 2 3 ... 11
    • Replies: 105
    • Views: 13,794
    24th May 2013 05:56 pm Go to last post
  25. WUSIWUG : lisp that write polar function

    Hi the most time consuming task in writing polar function is to find and write information for each needed point. why not to write a lisp routine that write a polar function for us? just draw...

    Started by samifox‎, 23rd May 2013 09:05 pm
    • Replies: 4
    • Views: 258
    24th May 2013 11:20 am Go to last post

Thread Display Options

Use this control to limit the display of threads to those newer than the specified time frame.

Allows you to choose the data by which the thread list will be sorted.

Order threads in...

Note: when sorting by date, 'descending order' will show the newest results first.

Icon Legend

Contains unread posts
Contains unread posts
Contains no unread posts
Contains no unread posts
More than 15 replies or 250 views
Hot thread with unread posts
More than 15 replies or 250 views
Hot thread with no unread posts
Closed Thread
Thread is closed
Thread Contains a Message Written By You
You have posted in this thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts