2. 用showwindows(WinAPI).
3. 用Timer控件.
不明白的话,请与我联系:[email protected]

解决方案 »

  1.   

    1.a and b
    2.windows98 setup cd disk 
    3.windows Api GetTickCount()
      

  2.   

    to putao:
    一个没有窗体(注意:不是窗口)的程序,如何用Timer.
      

  3.   

    1、a OR b;
    3、New 个Modal在把TTimer放上应该可以吧。
      

  4.   

    在单元头部声明TTimer型变量,自己创建连接事件响应,并负责最后销毁。var Timer1:TTimer;...Timer1:=TTimer.Create;
    Timer1.OnTimer:=MyOnTimer(..);
    ...
    Timer1.Free;
      

  5.   

    var Timer1:TTimer;...改一下
    if notassigned(timer1) then
    begin
      Timer1:=TTimer.Create; 
      Timer1.OnTimer:=MyOnTimer(..);
      ...
    end;
    ....if assigned(timer1) then
    beign
      Timer1.Free;
      timer1:=nil;
    end;
     
      
      

  6.   

    1. a or b
    2. showwindow(application.handle,SW_HIDE);//不出现在任务栏
       showwindow(application.handle,SW_SHOW);//重新显示在任务栏上
    3. 做一个线程负责跟踪时间