program DataExplorer;
uses
Forms,
SysUtils,
testdll in 'TESTDLL.PAS' {TestDlla},
datasetQRpas in 'datasetQRpas.pas' {DatasetQR: TQuickRep},
ListViewpas in 'ListViewpas.pas' {DBListView},
Formroot in 'Formroot.pas' {boot},
Functionpas in '../../../2004_Feb/Delphi7.0/testFunctionpas/Functionpas.pas';
{$R *.res}
var
Time1:TDateTime;
begin
boot:=Tboot.Create(nil); //为启动Form
boot.show;
boot.BorderStyle:=bsNone;
boot.update;
Time1:=now;
repeat until Time1+StrToTime('00:00:4')<=now;
Application.Initialize;
Application.CreateForm(TTestDlla, TestDlla);
boot.free;
Application.Run;
end.