Search found 5 matches
- 24 Oct 2005, 04:08
- Forum: CAD DLL
- Topic: CADImporterDLL can't read the text correcttly
- Replies: 3
- Views: 21490
- 30 May 2005, 05:10
- Forum: CAD DLL
- Topic: CADImporterDLL can't read the text correcttly
- Replies: 3
- Views: 21490
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.
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.
- 08 May 2005, 12:25
- Forum: CAD DLL
- Topic: CAD importer SDK DLL VB
- Replies: 8
- Views: 41914
- 08 May 2005, 06:06
- Forum: CAD DLL
- Topic: I can't get the value of Thickness
- Replies: 7
- Views: 37078
- 07 May 2005, 18:31
- Forum: CAD DLL
- Topic: I can't get the value of Thickness
- Replies: 7
- Views: 37078
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...