Search found 5 matches

by Li Yunbo
24 Oct 2005, 04:08
Forum: CAD DLL
Topic: CADImporterDLL can't read the text correcttly
Replies: 3
Views: 21418

The new version CADImporterDLL can't read correcttly when "%%" in DWG Text yet. "%%131" is useful information in the string "4%%13122", while "?" ignored the useful information. Using the new vesion "4%%13122" and "4%%13222" show the same "4?22", They can't be distinguished.
by Li Yunbo
30 May 2005, 05:10
Forum: CAD DLL
Topic: CADImporterDLL can't read the text correcttly
Replies: 3
Views: 21418

CADImporterDLL can't read the text correcttly

When creating text with "%%" in DWG, it can't get the correct content using CADImporterDLL.
For example, when I create DWG that only has a string "4%%13122", It will show "4?22" in autocad, But CADImporterDLL can't read the correct content as "4%%13122". It will read the content as "4?2" incorrecttly.
by Li Yunbo
08 May 2005, 12:25
Forum: CAD DLL
Topic: CAD importer SDK DLL VB
Replies: 8
Views: 41813

GlobalWidth is very useful to PLine, I suggest to add this field to DXFDATA.
by Li Yunbo
08 May 2005, 06:06
Forum: CAD DLL
Topic: I can't get the value of Thickness
Replies: 7
Views: 36953

For the same DWG file, In Demo for VB, The CADImageDLL shows the correct thickness of all the lines, but the CADImporterDLL losts the thickness inforamtion of all the lines.
by Li Yunbo
07 May 2005, 18:31
Forum: CAD DLL
Topic: I can't get the value of Thickness
Replies: 7
Views: 36953

I can't get the value of Thickness

I am using DXF Import Dll in VB. I create a DWG file with only one PLine object whose thickness is 10, But the value of the PLine is always 0 in VB. Public Function DoPaint(ByRef EData As Data, Param As Long) As Long Dim PreviousPen As Long Dim Pen As Long Pen = CreatePen(0, 0, EData.Color) Previous...