有人知道怎么制作向 Delphi7 开启的时候的Log界面吗?谢谢指教

解决方案 »

  1.   

    请参阅:
    http://www.delphibbs.com/delphibbs/dispq.asp?lid=113697大量电脑书籍下载:
    http://www.netyi.net/in.asp?id=ForMoreU
      

  2.   

    这个有很多的实现方法啊,你可以做个FLASHFORM,在里面放上TIMER控件,然后在面写上关闭窗口的代码,在设置好TIMER,这样的话显示一段时间后,该窗口就会关闭了
      

  3.   

    begin
      Application.Initialize;
      Application.Title := 'GSP V0.95';  Application.CreateForm(TDM, DM);  FLogin:=TFLogin.Create(Application);
      FLogin.ShowModal;
      if FLogin.ModalResult<>1 then Application.Terminate;
      FSplash:=TFSplash.Create(Application);
      FSplash.Show;
      FSplash.ReFresh;  Application.CreateForm(TFMain, FMain);  FSplash.Hide;
      FSplash.Close;
      FSplash.Free;
      Application.Run;