afrazawan Posted April 13, 2013 Posted April 13, 2013 i have a CAD file want to convert CSV-TXT file please help me please any one help me or convert this file and send me please urgent OGL FOR CSV TXT.dwg Quote
eldon Posted April 13, 2013 Posted April 13, 2013 As there is a Point at each of the figured coordinates, you can use Data Extraction Quote
afrazawan Posted April 13, 2013 Author Posted April 13, 2013 i can'nt use can you please and send me txt or csv file thanks Quote
eldon Posted April 13, 2013 Posted April 13, 2013 I am afraid that the version of AutoCAD that I am using does not have the Data Extraction. But your version does, so you will have to do it yourself. Quote
BIGAL Posted April 15, 2013 Posted April 15, 2013 Just a simple lisp that finds "points" will do code below not tested. (setq fout (open "c:\\yourdir\\yourfilename" "W")) (setq ss (ssget "X" (list (cons o "point")(cons 8 "0")))) (setq numb (sslength ss)) (setq x numb) (repeat numb (setq ans (cadr (nth (setq x (- x 1)) ss))) (writeline ans fout) ) (close fout) (princ) Quote
eldon Posted April 15, 2013 Posted April 15, 2013 There is always Lee Mac's Point Manager, if you must go for lisp. I was rather hoping that the OP would learn how to use AutoCAD fully, rather than falling back on lisps, which seems so easy to do nowadays. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.