Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. Inside the code there is explanation of the code function. The code does many functions that image can't explain. Kindly check the code and read the description inside. Regards.
  3. Today
  4. If your offering something a good idea is to provide images or a movie about what the program does, else the "Why bother" will occur. Just attaching a lisp is not really describing why you should download the program. Think of it as if I was selling the program how would I get people interested.
  5. BIGAL

    AutoCAD LT 2026 very slow to save

    LT slow, have you looked at doing saves say every 15 minutes as a test, your undo may be coming an excessive size. What is your auto save set to ? We had like 15 minutes as the default. Another where is your "Temp directory" pointing to I have a SSD and normal drive and the ssd is so much faster when saving.
  6. Yesterday
  7. ronjonp

    Boundary command

    AutoCAD 2027 still has the bug:
  8. I am a ROOKIE. So please take it easy on me. I've been searching and tried to replicate what others have said works for them with no luck. I'm trying to have 1 "MAIN" attribute that I am prompted to change the value when inserting the block. The other attributes "SUB1" and "SUB2" would update to match the value of the master. I have tried creating these attributes with the ATTDEF. I made the MAIN I then made the SUB1 with the Default a Field category OBJECT Field names Object Object type Attribute Definition ( which is where I can select the MAIN attribute) Property Value. I get the ---- in a Grey block I then select all 3 attributes and create a block with them. When I insert the block I get the prompt to change the value of MAIN and SUB1 & SUB2 have the ---- inside the grey boxes. The value of MAIN is updated but SUB1 and SUB2 still show the ---- Grey boxes. REGENALL amide no difference. I tried doing the same thing in the block editor and got the same results. I "ASSuME" it is just something easy that I am missing. If you can help that would be great. I have about 40 Attributes in 1 block that need to be updated with the value of the MAIN.
  9. mhupp

    AutoCAD LT 2026 very slow to save

    Ouch. See what it does if you hit esc. or hitting the X instead of cancel.
  10. I'm writing a lisp routine to automation drawing revision in lisp. to replace a diesel version. I have come across a problem when inserting the block using lisp, in diesel it works perfectly. The block has four attributes, with the last being a multiline attribute. The routine stumbles at this point and misinterprets the pause for user input as \ and returns the error 'unknown command'. The diesel code that works is below. attdia;0;-I;REVNOTE;\;1;;P01;""$m=$(edtime,$(getvar,date),DD.MO.YYYY)"";SMS;First issue;;attdia;1;rea; The same in lisp below (command "attdia" "0") (command "_Insert" "REVNOTE" pause 1 1 0 "P01" Date Initials pause) (command "attdia" "1") (command "REA") Any ideas on why this is happening as i'm stumped, unless its a bug in AutoCAD. many thanks REVNOTE.dwg
  11. pkenewell

    Quick String Search

    @rlx Your Kung-Fu is Strong! Nice work!
  12. rlx

    Quick String Search

    Updated first post , added a few new options and killed a little bug in the get-subfolders routine.
  13. Last week
  14. PGia

    Boundary command

    I’m using AutoCAD 2015. "boundary" is supposed to return a perimeter exactly matching the geometry surrounding the point specified to the command. I run the command using the option to identify boundaries by 'pick' on screen. I haven’t tried exploding the polylines into lines yet. I’ll give it a try, but I suspect the result will be the same.
  15. mhupp

    Boundary command

    Must be an AutoCAD thing works in BricsCAD. you could just join the other 3 polys and get the same effect.
  16. hmspe

    Boundary command

    So the problem is that the darker lines should intersect in the top square glyph instead of the next to the top square glyph? Which CAD are you using? When I run BOUNDARY or HATCH here in Bricscad V26 the boundary is always to the upper square glyph, not to the next to the top square glyph as shown in your drawing. What are the parameters you are using for the BOUNDARY command? Do you get the same error if you explode the plines before you run BOUNDARY?
  17. PGia

    Boundary command

    I think I didn’t explain myself properly. The idea is to run "boundary" and click inside the largest closed area shown in the image. After checking the result — by zooming into the area indicated by the arrow — you’ll understand what the image in my previous message is referring to. I’ll attach a drawing. Boundary.dwg
  18. BIGAL

    Fields called from TAB Names

    Thanks Danielm103 if using mtext field, I am sure have seen get total count. I think count was in this Lee-mac program for layout number and count. https://www.lee-mac.com/layoutfield.html
  19. hmspe

    Boundary command

    https://lee-mac.com/polyoutline.html or https://lee-mac.com/advpolyoutline.html will outline a pline. https://jtbworld.com/autocad-hatchb-lsp willoutline a hatch. I can't tell what might be required to automate the process without a DWG of a full pline set or hatch set example.
  20. Danielm103

    Fields called from TAB Names

    sure it is, try $(getvar,"ctab") full field is %<\AcDiesel $(getvar,"ctab")>%
  21. BIGAL

    Fields called from TAB Names

    There is a field property Ctab, in my Bricscad V25 it is not supported, but it is in Acad. There is also pretty sure total We just did a simple lisp that walked through all layouts and updated title block attributes like "Page No" of "howmanysheets" updated the actual layout name we used like "DXX", handy when re-ordered layouts. pretty sure there is a total number of layouts field formula will have to find again.
  22. BIGAL

    Boundary command

    No idea what the thick yellow line is ? If its a pline with a width then boundary is correct, it does not recognise pline thickness. I am sure there is ways to make a outline of the plines can then run boundary. If it's a hatch then can get outlines of hatch's then should be able to do a boundary.
  23. Danielm103

    Fields called from TAB Names

    You can generate the expression yourself; you can probably do this yourself with lisp. This is just a sample of generating the expression, but I can imagine it would be possible to set the field across all layouts. Caveat, it’s not automatic like CTAB db = Db.curDb() id = db.currentLayoutId() expr = '%<\\AcObjProp Object(%<\\_ObjId {}>%).Name \\f "%tc1">%'.format(id.asOldId()) print(expr) %<\AcObjProp Object(%<\_ObjId 2842273914048>%).Name \f "%tc1">%
  24. Hi I’ve run into this problem several times, but I was never able to understand why — until today. Sometimes I need to use the "boundary" command to obtain the perimeter of complex enclosed areas, but occasionally the area of the region returned by the command does not match the expected value. Today, I finally discovered why. In the image, I show an example of this. The thick yellow line is part of the original geometry, while the thinner dark-colored line is the one returned by "boundary". I repeated the command several times, but it always makes the same mistake. Does anyone understand why this happens? Is it possible to solve it somehow? Thanks in advance.
  25. Dear Members, @mcweb, @lowebowski, @SLW210 Unfortunately, I also encountered difficulties when attempting to purchase a licence. It appears that the developer's website has either disappeared or become inactive. As a result, I decided to develop my own alternative solution. The software is still under development; however, it has already delivered very good results for the tasks I originally needed it for. For the time being, I am happy to make it available free of charge under a machine-locked licence. If you are satisfied with the user experience and functionality, feel free to contact me via private message. Suggestions and feedback are also very welcome. One of the key advantages of this development is that it is not tied to any specific AutoCAD or Autodesk version. It operates as a standalone application, processing DXF files directly and producing DXF output files (please refer to the attached user guide). I hope this may be of help to others facing similar challenges. It has certainly helped me successfully complete my own projects. PS: For licence enquiries, please feel free to contact me via private message as well. Kind regards, HATCH-SETUP.rar HATCHI LT User Manual.pdf
  26. Do you only have AutoCAD LT 2026 to do this? As already requested, you need a to post a .dwg and Excel, CSV, etc.
  27. Haven't checked in a while, but we can't receive any .zip, .rar, etc. in emails here, but can send them, which is useless if sending internally. They had some ridiculously low email attachment file sizes when I first came here, I got them to go to 10MB, that's most likely what it is now. I put large files to share on the network and send a link (which IT has it where it cannot be clicked on), either they figure out how to get it or they don't. Being retirement age has it's perks.
  28. Reminds me of when I had to move a file before networking or USB drives. had to use winrar and split up the zip file between 12 floppy disks! Was curious and it only took 17 lines of code in python lol minus the emailing and join parts.
  1. Load more activity
×
×
  • Create New...