Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/27/2024 in all areas

  1. or put them on temp layer first , then change style / layer. Not sexy but dragonproof.
    2 points
  2. A small modification. miSplash.lsp
    1 point
  3. Maybe just try (command "dimstyle" "R" "yourdimstyle") before running Qdim. Not tested.
    1 point
  4. To draw a pline or pick points there will be a solution out there just Google. "Convert pline to multiline autolisp" it is not our task to do the googling for you.
    1 point
  5. This is what I use to add items to a selection set (setq ss ssadd) ;need at least a blank selection set to add things (setq LastEnt (entlast)) ;set this before you create or modify anything in the drawing. ... do stuff (while (setq LastEnt (entnext LastEnt)) ;this will add anything created after lastent was set to selection set ss (ssadd LastEnt SS) )
    1 point
  6. Please use code tags for your code. (<> in the editor toolbar)
    1 point
  7. The cogo point has a variable called location. (setq obj (vlax-ename->vla-object (car (entsel "\nPick cogo point ")))) ; vl 3d point convert to plain lisp (setq pt1 (vlax-safearray->list (vlax-variant-value (vlax-get-property obj "Location")))) (setq ht (nth 2 pt1)) ; Z val (setq X (nth 0 pt1)) (setq y (nth 1 pt1))
    1 point
  8. Talking to Butch via email putting something together. based on this starting point and pick point in model, layout made and mview created at correct scale.
    1 point
  9. 1 point
×
×
  • Create New...