Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. tendai1

    Error: exceeded maximum number of selection set

    Your autolisp routines are not coded very well, i.e. refer to AutoCAD documentation on selection sets (ssget), I quote, "Selection sets consume AutoCAD temporary file slots, so AutoLISP is not permitted to have more than 128 open at one time. If this limit is reached, AutoCAD refuses to...
  2. tendai1

    Middle Button Menu to Include Open Drawings

    Sorry, for the drawing history. Try the following for just one drawing, [$(eval,!.$(getvar,dwgprefix)$(getvar,dwgname))]
  3. tendai1

    Middle Button Menu to Include Open Drawings

    Add the following to your custom menu ID_MRU [Drawing History] [--]
  4. tendai1

    inserting path and filename

    If I have understood your original question properly, I think you should try Plot Stamp in AutoCAD, hopefully thats your working platform. I am not sure which versions contains this feature, certainly AutoCAD 2002 has the feature.
  5. tendai1

    ISOLATE A LAYER in 2002

    Follow this; borgunit (Mechanical) Jun 11, 2003 Express Bonus Tools 2002 - FREE Download and install the bonus tools from http://www.contractcaddgroup.com/download/ExpressBonusTools.zip "Whether you think that you can, or that you can't, you are usually right " .. Henry Ford
  6. tendai1

    Lisp

    Can anyone explain to me what causes the following error. ; error: bad argument type: lentityp nil
  7. tendai1

    Hatching individually ?????

    Try www.afralisp.com pw1.netcom.com/~rogh/autolisp/ plus any other tutorials and publications Don't forget AutoCAD Developers Help
  8. tendai1

    Hatching individually ?????

    Probably if I get a sample drawing to enable completion of the code to your specs.
  9. tendai1

    Hatching individually ?????

    Try this code which I created quickly, I think it will work well, but it still needs to be developed to ensure that it does not affect autocad system variables. Tell me your results. I have tried it on a drg with four simple rectangles only. (Defun c:htc () (prompt "\nSelect Objects...
  10. tendai1

    Lisp Routine

    Thanks CADaver you have made my day. Thank you all for the support you gave me.
  11. tendai1

    Lisp Routine

    I have analysed the (command &quot;.text&quot;)'s prompt sequence for the different drawings. On all of my drawings the sequence is as follows: Specify start point of text or [Justify/Style]: Specify height <0.300>: .3 Specify rotation angle of text <0.00>: Enter text: 56 Whereas this other...
  12. tendai1

    Lisp Routine

    The routine prompts for text height, hence non-zero text height.
  13. tendai1

    Lisp Routine

    If I run a lisp which inserts text i.e. (command &quot;.text&quot; pt1 txth1 0 n2) in a certain drawing, Only 0 (zero) is inserted for all the points I require, yet my expected results should be say 56 57 or 58. If I run the same routine on drawings which I created i get the right answer. Is...
  14. tendai1

    Lisp Routines

    Thanks, It has worked well.
  15. tendai1

    Lisp Routines

    Sorry for the late reply. This is one of my lisp codes, I have even tried cmdecho still no change. Whats the best way to determine which System Variable to use and when? I am still leaning lisp be patient with me. ;|Writen by Eddie Mukahadira. This code is for incremental labelling of objects...
  16. tendai1

    Lisp Routines

    When I run several lisp routines they work well, but my main problen is the text I get at the end i.e. (STT Unknown command &quot;STT&quot;. Press F1 for help.) despite getting the expected results. Would you please help me? I have even added the search path. Some routines do not display that...
  17. tendai1

    Lisp files

    Try this site, http://pw1.netcom.com/~rogh/autolisp/
  18. tendai1

    Lisp Routine

    Thanks it worked well, is there a command which can sort numbers i.e. (min - - - - - max) just like we can sort letters alphabetically.
  19. tendai1

    Lisp Routine

    Given a variable defined as (setq a '(-10 -20 10 20)) Can you help me to find the Max or Min of a (i.e. using the variable a). I would appreaciate anything other than (max -10 -20 10 20).
  20. tendai1

    Structural Engineer Checklist

    Dear Members I am a graduate with 2-3years in structural engineering. I am looking for a detailed structural engineers checklist or at list what to considered to minimise any errors before issuing a project. THANK YOU
Back
Top