CAD IMPORT VCL

Discuss and ask questions about CAD VCL (Delphi and C++ Builder).

Moderators: SDS, support, admin

Post Reply
THOI
Posts: 2
Joined: 03 May 2006, 14:02
Location: Laos

CAD IMPORT VCL

Post by THOI » 03 May 2006, 14:19

HELLO ! I ' m testing the demo - version of the cadimport VCL with Delphi 5. When I compile the viewer - demo , all works fine but if I try to use it in my final project in order to help me graduate from school intime.
I discover your company CAD IMPORT VCL and program it again and i have some problem. For example, i must be registered a http://www.cadsofttools. My teacher made complaint and ask me to do it again.
It is hard for me to finish in a short time.
please show me to program dxfconv.pas and sgconsts.pas.
thank you indeed.


T

support
Posts: 3272
Joined: 30 Mar 2005, 11:36
Contact:

Post by support » 03 May 2006, 15:38

Hello,

Registering of our products means theirs purchasing.
Please write us on info@cadsofttools.com for getting full informating. Sales people will contact to you today.

Sergey.

please post questions to the forum or write to support@cadsofttools.com

THOI
Posts: 2
Joined: 03 May 2006, 14:02
Location: Laos

Post by THOI » 07 May 2006, 08:40

Hello,
How to load CADfile(DXF) by DXFconverter.
please give me a sample,thanks.

T

support
Posts: 3272
Joined: 30 Mar 2005, 11:36
Contact:

Post by support » 08 May 2006, 17:04

Hello,

TsgDXFConverter class is intended for joint usage with TsgDXFImage class. Object of TsgDXFConverter is unable to load files independently. As a member of TsgDXFImage class object is serves as the container for storage of entities loaded from the file. The following lines demonstrate how to load file and to get access to entities stored in TsgDXFConverter class object:

Code: Select all

<b>var</b>
  Img: TsgDXFImage;
...
  Img := TsgDXFImage.Create;
  Img.LoadFromFile('c:\testfile.dxf');
  //   use Img.Converter for your purposes
...
Sergey.



please post questions to the forum or write to support@cadsofttools.com

Post Reply