Search found 3259 matches

by support
14 Mar 2024, 16:01
Forum: General questions and answers
Topic: Where is Administration cadsofttools.com ??
Replies: 1
Views: 974

Re: Where is Administration cadsofttools.com ??

Hi,
Thank you for the offer, but we do not place any advertisement on our website.

Best regards,
Catherine.
by support
01 Mar 2024, 15:15
Forum: General questions and answers
Topic: gbr to plt
Replies: 3
Views: 40827

Re: DXF Export in Java.

paypayAcele wrote:
29 Feb 2024, 21:41
Wie kann ich Multiple Layouts in Java für den DXF Export verwenden und gibt es eine Möglichkeit, Elemente zu entgruppieren?
Hi,
DXF Export Java is an obsolete product, and we no longer support it. In this case we suggest you try out CADEditorX.

Best wishes,
Catherine.
by support
20 Feb 2024, 12:28
Forum: General questions and answers
Topic: Where is Administration cadsofttools.com??
Replies: 1
Views: 757

Re: Where is Administration cadsofttools.com??

Antoniogbq wrote:
20 Feb 2024, 11:09
Where is administration?
I'ts important.
Thank.

We're here.
So what is your question and on what matter?
Best regards,
Catherine.
by support
30 Jan 2024, 14:00
Forum: CAD .NET
Topic: CADtoDWG.SaveAsDWG -> Exception Error
Replies: 1
Views: 1255

Re: CADtoDWG.SaveAsDWG -> Exception Error

I have written a small amount of test code to simply open a DWG file and then save it - Essentially making a copy. I wanted to ensure that I am not causing any issue by editting the file, so it's very simple: void SaveFile() { CADImage cadImage = CADImage.CreateImageByExtension(selectFile.FileName)...
by support
25 Jan 2024, 12:03
Forum: CADEditorX
Topic: Load CADEditorx into QT
Replies: 6
Views: 3629

Re: Load CADEditorx into QT

徐亦珂辰 wrote:
25 Jan 2024, 10:14
Yes, I have completed the steps to load CADEditorX in QT, thank you guys for your help.


Kind regards
Thank you for letting us know that the issue is resolved.

Best wishes,
Catherine.
by support
25 Jan 2024, 11:35
Forum: CAD VCL
Topic: Delphi codeinsight feature stops working
Replies: 10
Views: 3111

Re: Delphi codeinsight feature stops working

Hello, Please try to send a screenshot via e-mal at support@cadsofttools.com Thanks in advance. Kind regards, Suraya Hello, Thank you for sending us the screenshots. As I said in the email, In your case we may suggest two options: 1. Define the SG_NOT_USE_GLSCENE in your project; Or 2. In your proj...
by support
22 Jan 2024, 16:35
Forum: CADEditorX
Topic: Load CADEditorx into QT
Replies: 6
Views: 3629

Re: Load CADEditorx into QT

It's a pleasureTo be able to hear back from you,Suraya, I downloaded the file you sent me, but I get this error when opening the build with my QT 5.15.2:: error: No rule to make target 'E:/QAxWidget_ProcessXML/QAxWidget_ProcessXML/lib/libQt5AxContainerd. a', needed by 'debug/cadeditor.exe' . Stop。 ...
by support
15 Jan 2024, 15:57
Forum: CADEditorX
Topic: Load CADEditorx into QT
Replies: 6
Views: 3629

Re: Load CADEditorx into QT

Hello,

We have a demo which should implement your task.
Please use the next link to download it: https://cadsofttools.com/download/clien ... essXML.zip

Kind regards,
Suraya
by support
11 Jan 2024, 14:32
Forum: CAD VCL
Topic: Delphi codeinsight feature stops working
Replies: 10
Views: 3111

Re: Delphi codeinsight feature stops working

Hello,

Please try to send a screenshot via e-mal at support@cadsofttools.com

Thanks in advance.

Kind regards,
Suraya
by support
10 Jan 2024, 14:59
Forum: ABViewer
Topic: Ошибки отрисовки
Replies: 1
Views: 1446

Re: Ошибки отрисовки

Добрый день, Дмитрий! Спасибо за комментарий и за проявленный интерес к программному продукту ABViewer! Сожалеем, что Вы столкнулись с данной неполадкой в программе. Наши специалисты работают над улучшением отображения моделей в программе. Будем благодарны если пришлёте нам файлы для тестирования на...
by support
20 Dec 2023, 11:16
Forum: ABViewer
Topic: Bad import of step file
Replies: 1
Views: 4091

Re: Bad import of step file

I generated a STEP file with cadQuery, its quite simple. However, viewing (and subsequent re-export) in ABViewer 15 has an artifact on one of the faces which hosts a hole cut. FreeCAD imports correctly, and the viewer I use in vscode in development gets it right too. File attached - there is a very...
by support
05 Dec 2023, 14:25
Forum: CAD VCL
Topic: Delphi codeinsight feature stops working
Replies: 10
Views: 3111

Re: Delphi codeinsight feature stops working

Hi, First of all, the issue with "Code Insight" feature depends on the Delphi library. As for DCU files. Usually, we do not provide any DCU files, however, as an expcetion you can discuss a possibility of providing you with these files at a certain price. Please, contact us at info@cadsofttools.com...
by support
05 Dec 2023, 09:34
Forum: CAD .NET
Topic: CADInsert move to multiple layers
Replies: 4
Views: 1328

Re: CADInsert move to multiple layers

Hi Catherine, here a part of the code: how can I send you the GDS? private CADEntity CloneEntity(CADEntity src) { CADEntity result = (CADEntity)Activator.CreateInstance(src.GetType()); result.AssignEntity(src); if (result.EntType == EntityType.Attrib) (result as CADAttrib).Value = (src as CADAttrib...
by support
04 Dec 2023, 16:08
Forum: CAD VCL
Topic: Rotated axis
Replies: 1
Views: 519

Re: Rotated axis

Hi Can you help me with drawing using rotated axis? I have closed IFC polyline for example. (0,0,0), (10,0,0), (10,10,0), (0,10,0) Then I know that x-axis is rotated as (0.655, 0, 0). Should i use matrix or ucs coordinates? So how I can draw this polyline correctly or calculate coordinates. Hi, You...
by support
01 Dec 2023, 08:42
Forum: CAD .NET
Topic: CADInsert move to multiple layers
Replies: 4
Views: 1328

Re: CADInsert move to multiple layers

Hello I have a GDS File with a CADBlock used in many CADInsert. I need to color some of these in different colors; so I'm trying to achieve this by moving the CADInsert to new layers and assign diferrent colors to those new layers. I clone the block and assignt it to the new layer and to the Insert...