Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/13/2021 in all areas

  1. Like tombu can see title block is inside dashed lines.
    1 point
  2. I like having two monitors rather than one super large display. It's easy to maximize the AutoCAD graphics window on one of the displays and use the other for a variety of options including AutoCAD panels (properties, layers,...), help files, email, reference documents, etc. keeping your main CAD area clean and unobstructed. Of course you can always stretch the AutoCAD window to fill the two monitors (something I rarely want to do). You can get a couple of 20" Dell monitors for less than $200 USD each.
    1 point
  3. No Tharwat , I completly missed the upper / lower case issue , you eagle eyed genius!
    1 point
  4. "AcDbMTEXT" must be "AcDbMText" Edit: all credits to @rlx for the good example he offered.
    1 point
  5. (SetCustomDwgProp "Pages" "1") Will add only if necessary then set the Custom Property "n_project" to "IT.19.9655" using the following code. (defun getCustomDwgProp (key / app doc dwgprops try val) (vl-load-com) (setq App (vlax-Get-Acad-Object) Doc (vla-Get-ActiveDocument App) DwgProps (vla-Get-SummaryInfo Doc) ) (cond ((vl-catch-all-error-p (setq try (vl-catch-all-apply 'vla-GetCustomByKey (list DwgProps key 'val) ) ) ) (setq val nil) ) ) val ) (defun SetCustomDwgProp (key value / App Doc DwgProps) (vl-load-com) (setq App (vlax-Get-Acad-Object) Doc (vla-Get-ActiveDocument App) DwgProps (vla-Get-SummaryInfo Doc) ) (if (getCustomDwgProp key) (vla-SetCustomByKey DwgProps key value) (vla-AddCustomInfo DwgProps key value) ) )
    1 point
×
×
  • Create New...