![]() |
![]() |
Back |
Hi CADies ! Did anybody happen to NOT manage to import DXF-Files into R13 because of errors like "theres no block named ..." or "there is no linestyle like ..." ??? Yes I tried it all the way. With an empty startup-modell or not. It allways fails to succeed. But the strange thing is that if you try the same file with ACAD LT 3 it just works fine. Any suggestions ???? Thanks allready !Return to Top
Tim, try to INSERT * (exploded) the corrupt drawing into a new, no prototype drawing. -- Owen Wengerd [ManuSoft] ** AutoCAD Wizard At Large ** http://www.manusoft.com owenw@manusoft.com Compuserve: 71324,3252 TimReturn to Topwrote in article <5c09gm$ckf@news.enterprise.net>... [ ... ] > Fatal Error - Unhandled Exception > > then it asks if I need to save it, but it will not let me and crashes > out. Im using NT4, but the drawing does the same from Win95. [ ... ]
Paul: Here is an example for simple spline data extraction. With some modifications, I think that you can make it work in your program: ;pick spline (setq your_spline (entget (car (entsel)))) ;extract all 11s fit points (setq elevens (member (assoc 11 your_spline) your_spline)) ;extract last fit point (nth (- (length elevens) 1) elevens) ; and so on... Hope this helps, Adi Paul Lynn SestoReturn to Topwrote in article ... > > Hello and thanks for reading, > > Has anyone started to use the spline entity list with R13. > Specifically my problem is trying to access the group code > 11 that is for the fit points. From the Autocad > customization guide page 555 it states that multiple group > 11 entries can exist. This I know since for each fit point > there is a dotted pair. But how do you access the fit points > beyond the first one. Why I need this is that I want to > access the fit points of the spline in order to write the > fit points to a file. > The 'assoc 11' only accesses the 1st fit point. > > Any suggestions?? > > Thanks, > > Paul