Search found 15 matches

by marym
18 Jun 2018, 15:25
Forum: CAD VCL
Topic: Conflict between QuickReports and CADSoftTools VCL
Replies: 15
Views: 55001

Re: Conflict between QuickReports and CADSoftTools VCL

Yes, our problem was solved by switching to 5.06. It appears that they added the namespace in 6.0. However, at some point in the future we will want to upgrade our IDE and it will be a problem (perhaps a year from now). So I think you will need to work with QuickReports to resolve the problem. Eithe...
by marym
11 Jun 2018, 18:16
Forum: CAD VCL
Topic: Conflict between QuickReports and CADSoftTools VCL
Replies: 15
Views: 55001

Re: Conflict between QuickReports and CADSoftTools VCL

We decided to switch to QuickReport 5.06, which does not have the namespace problem. However, I think you should work with QuickReports to come up with a solution. The next time we upgrade the IDE we will run into this problem again unless either CADSoftTools or QuickReports makes a change. Thanks!
by marym
30 May 2018, 00:37
Forum: CAD VCL
Topic: Conflict between QuickReports and CADSoftTools VCL
Replies: 15
Views: 55001

Re: Conflict between QuickReports and CADSoftTools VCL

FYI - I did not get any compiler or linker errors when I built my CADSoftTools static library. I also don't get any compiler or linker errors in my projects. Just the runtime error I described in my original post. Would the problem be solved if you rename your sgConsts namespace? I am assuming you w...
by marym
29 May 2018, 22:25
Forum: CAD VCL
Topic: Conflict between QuickReports and CADSoftTools VCL
Replies: 15
Views: 55001

Re: Conflict between QuickReports and CADSoftTools VCL

Hi Mikhail,

I see that there is an SGConsts.hpp file that comes with QuickReports and with CADSoftTools. Is that the root of the problem?

I have not modified the SGConsts.hpp file in QuickReports or in CADSoftTools.

Thanks,
Mary
by marym
29 May 2018, 15:11
Forum: CAD VCL
Topic: Conflict between QuickReports and CADSoftTools VCL
Replies: 15
Views: 55001

Re: Conflict between QuickReports and CADSoftTools VCL

Do you have an estimate for when you will be able to offer a patch to fix this issue?
by marym
23 May 2018, 23:15
Forum: CAD VCL
Topic: Conflict between QuickReports and CADSoftTools VCL
Replies: 15
Views: 55001

Re: Conflict between QuickReports and CADSoftTools VCL

Thank you Mikhail. Please keep me posted on your progress.
-Mary
by marym
23 May 2018, 14:30
Forum: CAD VCL
Topic: Conflict between QuickReports and CADSoftTools VCL
Replies: 15
Views: 55001

Re: Conflict between QuickReports and CADSoftTools VCL

Hi Mikhail,
Files were too big to attach to forum, so I sent them to info@cadsofttools.com.
Thanks,
Mary
by marym
21 May 2018, 23:58
Forum: CAD VCL
Topic: Conflict between QuickReports and CADSoftTools VCL
Replies: 15
Views: 55001

Re: Conflict between QuickReports and CADSoftTools VCL

We are using QuickReport 6
by marym
21 May 2018, 22:00
Forum: CAD VCL
Topic: Conflict between QuickReports and CADSoftTools VCL
Replies: 15
Views: 55001

Conflict between QuickReports and CADSoftTools VCL

I am in the process of converting 2 projects from C++ Builder Seattle to C++ Builder Tokyo. I am having problems with some code that used to work fine in Seattle - converting a DXF to BMP. I experimented with creating a simple sample VCL project. When I included CADSoftTools, I was successfully able...
by marym
14 May 2018, 16:16
Forum: CAD VCL
Topic: Creating a solid circle
Replies: 2
Views: 13635

Re: Creating a solid circle

Works perfectly. Thank you!
by marym
11 May 2018, 00:11
Forum: CAD VCL
Topic: Creating a solid circle
Replies: 2
Views: 13635

Creating a solid circle

I created this method to create a hollow circle. How can I modify it to fill it in with color? void CadSoftToolsH::AddCircle(double xCtr, double yCtr, double radius, String LayerName, const Graphics::TColor color) { TsgDXFCircle * vCircle = new TsgDXFArc(); vCircle->Radius = radius; vCircle->Point =...
by marym
06 Sep 2016, 20:29
Forum: CAD VCL
Topic: Can I save drawing on TPaintBox control to DXF?
Replies: 2
Views: 25421

Re: Can I save drawing on TPaintBox control to DXF?

Mikhail,
I suspected that was the case, but I wanted to make sure. Thank you for your prompt reply.
Mary
by marym
06 Sep 2016, 17:50
Forum: CAD VCL
Topic: Can I save drawing on TPaintBox control to DXF?
Replies: 2
Views: 25421

Can I save drawing on TPaintBox control to DXF?

I see that your code sample projects use the TImage control. I have an existing project that has a drawing made on a TPaintBox control. How can I save the TPaintBox drawing to DXF?

By the way, I am using C++ (I do not have Delphi).

Thanks in advance for your assistance.
by marym
22 Jul 2015, 00:18
Forum: CAD VCL
Topic: Problem with justified text
Replies: 2
Views: 20445

Re: Problem with justified text

screen shots are attached
by marym
22 Jul 2015, 00:17
Forum: CAD VCL
Topic: Problem with justified text
Replies: 2
Views: 20445

Problem with justified text

I am having problems creating justified text in a DWG file. It only seems to work properly if the Point is 0,0. For the code snippet below, I try to create justified text. It only works with the 0,0 version. I believe this is because the code sets the "Geometry Position X" variable, but it should be...