Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/13/2022 in all areas

  1. If it's not a one block, it's not a specific shape, it's in the same layer, it's overlapping locations, how does the CAD know that it's same group? in your sample dwg, text and rectangle blocks can be found by angle property values but in the case of lines, it seems difficult to know if they are in the same group of blocks and texts's.
    2 points
  2. I had some storm drain and sewer profiles. One day the structures disappeared, but the pipes didn't. This issue seems to have happened to other people as well, but nobody could find a solution. Until now. I tracked down the pipe network catalog to a folder. You can locate this folder on your system by pulling down the Create Design tab on the Home panel of the ribbon and picking Set Pipe Network Catalog. You reach the same window through the main Pipes menu, which includes the command to Set Pipe Network Catalog. The path to the folder is in the Catalog Folder box. That same window lets you select the structure and pipe catalogs, which must be present in that folder. Apparently, those catalogs have to be valid groups of files. I could select the Imperial Structures catalog, but I could only ever access the first batch. I guessed that the second one had become corrupted somehow, so the validation process just gave up. I never tried to edit my structure catalog, so I don't know what happened to it. The solution was to get a copy of that entire folder containing that structure catalog and replace the original. After that, everything worked as before. If you don't have a co-worker with a good version, I suppose you can repair or re-install Civil 3D. There's no telling if or when the problem will recur, but at least now I have a fix. Interesting side note: I was able to restore the structures temporarily by creating a block and redefining the profile structure style to use that instead of the part parameters. The block is a rectangle, size .25 horizontal by 1.0 vertical, with the insertion point defined where you set it in the style, for example, the rim is the center of the top side. Not only does defining this block display the structure, it makes the label visible too. The downside here is that changing the style obliges other users to deal with the same temporary fix instead of seeing the correct structure.
    1 point
  3. We have over 45 different clients and sometime use there DIMSTYLES. We have HVAC, Structural, Electrical I we use. Each Client we have created DWT drawing with DIMSTYLES! I suggested that we use the Tool Palette with each client DIMSTYLES. Would like to have a dialog box to select which DIMSTYLE scale I want to us. I want to utilize Tool Palette for other Standard drawing stuff. Plus I was looking to a “FREE” block manager to put HVAC, Mech, Structural blocks that allow to insert blocks in set layer, scale!
    1 point
  4. Assoc 8 is layer, so maybe try changing Assoc 2, the selection will be based on the layer that is current for block picked. Learning about what the numbers mean will help you with understanding selection set filters. Some of the dxf numbers are always the same like 8.
    1 point
  5. I left it out on purpose since the OP says 'blocks', no mention of name.
    1 point
  6. Tho you should probably get the name as well or your selection set will be any block at X angle. (defun c:foo (/ a n e s) (cond ((and (setq e (car (entsel "\nPick a block to set rotation: "))) (setq a (assoc 50 (entget e))) (setq n (assoc 2 (entget e)))) (sssetfirst nil (ssget "_X" (list '(0 . "INSERT") a n))) ) ) (princ) )
    1 point
  7. (50 . 0) is the rotation in radians: (sssetfirst nil (ssget '((0 . "INSERT") (50 . 0)))) Here's a quickie to set the rotation from a picked block: (defun c:foo (/ a e s) (cond ((and (setq e (car (entsel "\nPick a block to set rotation: "))) (setq a (assoc 50 (entget e)))) (sssetfirst nil (ssget "_X" (list '(0 . "INSERT") a))) ) ) (princ) )
    1 point
  8. Would like to have a dialog box to select which DIMSTYLE scale I want to us. Have a look at my multi radio buttons.lspMulti radio buttons.lsp
    1 point
  9. Old fashioned and its free a custom MNU. Can set layers & scales etc as you insert. Tool Palette now and its free.
    1 point
  10. Set up template drawing with all the correct plot styles and dim styles save it out with clients name. then use the following on new drawings to pull from said template. http://www.lee-mac.com/steal.html
    1 point
×
×
  • Create New...