Search found 22 matches

by hayami
11 Jan 2024, 02:40
Forum: CAD VCL
Topic: Delphi codeinsight feature stops working
Replies: 10
Views: 3489

Re: Delphi codeinsight feature stops working

Hi, Could you send us your screenshots from the tabs "Options", "Syntax Highlighter" (as per screehsot below), etc. and we will apply your settings on our machines, trying to reprodue your issue. Best wishes, Catherine. Hi, I would like to attach it, but a warning appears and I cannot attach it. "S...
by hayami
04 Dec 2023, 05:36
Forum: CAD VCL
Topic: Delphi codeinsight feature stops working
Replies: 10
Views: 3489

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 hayami
14 Nov 2023, 02:33
Forum: CAD VCL
Topic: DXF ImageDef TransparentColor
Replies: 5
Views: 1778

Re: DXF ImageDef TransparentColor

Hello, Thank you for the question. Please use the example below to disable TransparentColor: property Transparency: Boolean read GetTransparency write SetTransparency; property TransparentColor: Cardinal read GetTransparentColor write SetTransparentColor; Best regards, Suraya Hi. Thank you for the ...
by hayami
14 Nov 2023, 02:30
Forum: CAD VCL
Topic: Delphi codeinsight feature stops working
Replies: 10
Views: 3489

Re: Delphi codeinsight feature stops working

Hi Ryosuke, Did DXF compilation go successfully? You should have at least one successful compilation and in this case Delphi feature will work. Best regards, Catherine. Hi, Yes, it was compiled. DXF.pas > DXFConv.pas > sgMFunctions.dcu is referenced. I doubt it. Can I get a debug DCU? Best Regards,...
by hayami
13 Nov 2023, 03:15
Forum: CAD VCL
Topic: Delphi codeinsight feature stops working
Replies: 10
Views: 3489

Re: Delphi codeinsight feature stops working

Hello, Please, move uses DXF; to the top uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs; and then compile the project and check it. Maybe it will help. Best regards, Catherine. Hi, That method didn't improve...
by hayami
09 Nov 2023, 05:30
Forum: CAD VCL
Topic: Delphi codeinsight feature stops working
Replies: 10
Views: 3489

Delphi codeinsight feature stops working

Hi, I'm using Delphi 11.3. CAD VCL is version 15. Added DXF.pas to "uses". Delphi's support feature "Code Insight" will no working. help me. The same goes for DXFConf.pas and CADtoDXF.pas. Best Regards, Ryosuke Hayami unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, Syste...
by hayami
10 Oct 2023, 02:16
Forum: CAD VCL
Topic: DXF ImageDef TransparentColor
Replies: 5
Views: 1778

Re: DXF ImageDef TransparentColor

Hi, ImageDef doesn't have such a property. The TransparentColor property is availabe for TsgDXFImageEnt. This property is available for our entities only (in the original DXF/DWG formats such property doesn't exist). The TransparentColor property is defined while reading the entity and after loadin...
by hayami
03 Oct 2023, 08:13
Forum: CAD VCL
Topic: DXF ImageDef TransparentColor
Replies: 5
Views: 1778

DXF ImageDef TransparentColor

Hi,
About the transparent color of ImageDef
I'm looking for DXF Reference.
Please tell me the URL.

Best Regards,
Ryosuke Hayami
by hayami
13 Jun 2014, 04:41
Forum: CAD VCL
Topic: How to change the layer
Replies: 1
Views: 13204

How to change the layer

hello. I'm trying to do that: 1.Changing the Layer of Entity 2.Rename Layer Layer has the Entitiy. procedure ChangeLayer(AEntity: TsgDXFEntity; AToLayerName: String); var wLayer: TsgDXFLayer; begin wLayer := FCadImage.Converter.LayerByName(AToLayerName); AEntity.Layer := wLayer; FCadImage.Converter....
by hayami
08 Apr 2014, 07:15
Forum: CAD VCL
Topic: how to delete layer
Replies: 2
Views: 16063

Re: how to delete layer

I was able to delete the layer in the sample code.

Thank you.
by hayami
07 Apr 2014, 05:40
Forum: CAD VCL
Topic: how to delete layer
Replies: 2
Views: 16063

how to delete layer

hello. I'm trying to delete a layer with the following code. var wCadImg: TsgCADdxfImage; wEntity: TsgDXFEntity; wLayer: TsgDXFLayer absolute wEntity; wGroup: TsgDXFGroup; i: Integer; ~~~~~~~~~~~~ wGroup := wCadImg.Converter.Sections[csLayers]; for i := 0 to wGroup.Count - 1 do begin wEntity := wGro...
by hayami
07 Apr 2014, 05:25
Forum: CAD VCL
Topic: Handle changes in DXF save
Replies: 3
Views: 18156

Re: Handle changes in DXF save

hello Alexander.

It was my mistake.
sorry.

use version is 9.1

thanks.
by hayami
02 Apr 2014, 07:09
Forum: CAD VCL
Topic: Handle changes in DXF save
Replies: 3
Views: 18156

Re: Handle changes in DXF save

Sorry.
I had the same question as well before.
http://www.cadsofttools.com/forum/viewt ... dle#p11564

Thanks.
by hayami
02 Apr 2014, 06:44
Forum: CAD VCL
Topic: Handle changes in DXF save
Replies: 3
Views: 18156

Handle changes in DXF save

Hello. I tried the following code: procedure TForm1.Button1Click(Sender: TObject); var wCadImage: TsgCADdxfImage; c2d: TsgCADtoDXF; wDir, S: String; begin GetDir(0, wDir); S := IncludeTrailingPathDelimiter(wDir) + 'test.dxf'; wCadImage := TsgCADdxfImage.Create; wCadImage.LoadFromFile(S); S := Includ...
by hayami
28 Mar 2014, 10:40
Forum: CAD VCL
Topic: Layer.Visible = False But it appears
Replies: 2
Views: 15358

Re: Layer.Visible = False But it appears

Thank you