home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip: Shareware for Win 95
/
Chip-Shareware-Win95.bin
/
ostatni
/
delphi
/
ruzne
/
auto32d3.exe
/
rar
/
AUTO32D3
/
DEMOS
/
DELPHI3.0
/
GRIDBTN
/
MAIN.PAS
< prev
Wrap
Pascal/Delphi Source File
|
1997-04-20
|
858b
|
45 lines
unit main;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
Buttons, StdCtrls, DB, DBTables, AutoDB, Grids, DBGrids, adbgrid,
ExtCtrls, agridbtn, Refer;
type
TForm1 = class(TForm)
Panel1: TPanel;
Panel2: TPanel;
AutoDBGrid1: TAutoDBGrid;
AutoTable1: TAutoTable;
DataSource1: TDataSource;
Button1: TButton;
BitBtn1: TBitBtn;
DBGridDateBtn1: TDBGridDateBtn;
DBGridMemoBtn1: TDBGridMemoBtn;
DBGridImageBtn1: TDBGridImageBtn;
Label1: TLabel;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
uses About;
{$R *.DFM}
procedure TForm1.Button1Click(Sender: TObject);
begin
fmAboutBox.ShowModal;
end;
end.