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
Code: Select all
unit Unit1;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs;
type
TForm1 = class(TForm)
procedure FormCreate(Sender: TObject);
private
{ Private 宣言 }
public
{ Public 宣言 }
end;
var
Form1: TForm1;
implementation
uses
DXF;
{$R *.dfm}
procedure TForm1.FormCreate(Sender: TObject);
var
s: string;
begin
s.To // Press to Ctrl+Space. StringHelper is not show.
// after Delete DXF uses. StringHelper is show.
end;
end.