Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/11/2018 in all areas

  1. What software do you have access to ? A good free program is draftsight if you don't have anything and like Remark practice and when stuck ask questions here plenty will help.
    1 point
  2. Pick a program then practice, practice and finally practice some more. A combination of self-education and some targeted classes to fill in any gaps would work.
    1 point
  3. Alternatively, you could use something like this: (setq pth "C:\\Users\\Tony Clean Install\\#Advance\\Blocks\\Cameras\\Camera HD Detail.dwg" blk (vl-filename-base pth) ) (if (or (tblsearch "block" blk) (and (or (findfile pth) (prompt (strcat "\n" pth " not found.")) ) (or (progn (command "_.-insert" pth nil) (tblsearch "block" blk) ) (prompt (strcat "\n" blk " could not be defined.")) ) ) ) (command "_.-insert" (strcat "*" blk) "\\" 1 0) )
    1 point
  4. This is to parse numbers only . (vl-list->string (vl-remove-if-not '(lambda (i) (< 47 i 58)) (vl-string->list "Agl-7.s0@2e:3?(#)8_5F") ) ) Letters only . (vl-list->string (vl-remove-if-not '(lambda (a) (or (< 96 a 123) (< 64 a 91))) (vl-string->list "Agl-7.s0@2e:3?(#)8_5F") ) )
    1 point
×
×
  • Create New...