-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunit4.pas
More file actions
49 lines (33 loc) · 800 Bytes
/
Copy pathunit4.pas
File metadata and controls
49 lines (33 loc) · 800 Bytes
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
unit Unit4;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, db, FileUtil, Forms, Controls, Graphics, Dialogs, DBGrids,
StdCtrls, DbCtrls, ZDataset;
type
{ TfAkun }
TfAkun = class(TForm)
DataSource1: TDataSource;
DBGrid1: TDBGrid;
DBNavigator1: TDBNavigator;
Label1: TLabel;
ZQuery1: TZQuery;
procedure DataSource1DataChange(Sender: TObject; Field: TField);
procedure FormClose(Sender: TObject; var CloseAction: TCloseAction);
private
{ private declarations }
public
{ public declarations }
end;
var
fAkun: TfAkun;
implementation
{$R *.lfm}
{ TfAkun }
procedure TfAkun.FormClose(Sender: TObject; var CloseAction: TCloseAction);
begin
end;
procedure TfAkun.DataSource1DataChange(Sender: TObject; Field: TField);
begin
end;
end.