CAD IMPORT VCL
Moderators: SDS, support, admin
CAD IMPORT VCL
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
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
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
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
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:
Sergey.
please post questions to the forum or write to support@cadsofttools.com
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
...
please post questions to the forum or write to support@cadsofttools.com