Srm.~dp
上传用户:tj00001
上传日期:2007-01-07
资源大小:672k
文件大小:1k
源码类别:

行业应用

开发平台:

Delphi

  1. //---------------------------------------------------------------------------
  2. //(R)CopyRight KivenSoft International ,inc 1998
  3. //程序名称:电子书库
  4. //单元名称:主单元
  5. //作    者:李会文
  6. //开始时间:1998.07.28
  7. //最后修改:1999.06.27
  8. //---------------------------------------------------------------------------
  9. program Srm;
  10. {%ToDo 'Srm.todo'}
  11. uses
  12.   Windows,
  13.   Forms,
  14.   MainUnit in 'MainUnit.pas' {SrmForm},
  15.   SrmUnit in 'SrmUnit.pas',
  16.   SrmConst in 'SrmConst.pas',
  17.   SrmAbout in 'SrmAbout.pas' {AboutForm},
  18.   SrmOption in 'SrmOption.pas' {OptionForm},
  19.   InputPw in 'InputPw.pas' {InPwForm},
  20.   OneInst in 'OneInst.pas',
  21.   RegUnit in 'RegUnit.pas',
  22.   MruUnit in 'MruUnit.pas',
  23.   MainFun in 'MainFun.pas',
  24.   ClipUnit in 'ClipUnit.pas',
  25.   GbBig in 'GbBig.pas';
  26. {$R *.RES}
  27. {$R SrmAtt.res SrmAtt.rc}
  28. var
  29.   ITime:DWORD;
  30. begin
  31.   Application.Initialize;
  32.   if not CheckInstance then             //如果没有运行其它电子书库
  33.   begin
  34.     AboutForm:=TAboutForm.Create(nil);  //启动屏幕
  35.     AboutForm.BorderStyle:=bsNone;
  36.     AboutForm.OKSpeedButton.Visible:=false;
  37.     AboutForm.ClientHeight:=AboutForm.Panel1.Top+AboutForm.Panel1.Height+10;
  38.     AboutForm.Show;
  39.     AboutForm.Update;
  40.     ITime:=GetTickCount;
  41.     Application.Title := '电子书库';
  42.   Application.CreateForm(TSrmForm, SrmForm);
  43.   while (GetTickCount-ITime)<2000 do;    //延迟两秒
  44.     AboutForm.Hide;
  45.     AboutForm.Free;
  46.   end;
  47.   Application.Run;
  48. end.