-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathG7Project.pas
49 lines (38 loc) · 856 Bytes
/
G7Project.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
unit G7Project;
{$MODE Delphi}
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ComCtrls, Grids;
type
{ TFG7Project }
TFG7Project = class(TForm)
BOK: TButton;
BCancel: TButton;
PageControl: TPageControl;
TabConfig: TTabSheet;
TabIOModules: TTabSheet;
TabVariables: TTabSheet;
CBVarType: TComboBox;
SGVariables: TStringGrid;
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
FG7Project: TFG7Project;
implementation
{$R *.dfm}
procedure TFG7Project.FormCreate(Sender: TObject);
begin
with SGVariables do begin
Cells[0,0]:='Name';
Cells[1,0]:='Type';
Cells[2,0]:='Mode';
Cells[3,0]:='Binding';
Cells[4,0]:='Comment';
end;
end;
end.