1、最好用Timer2、2K支持at服务,在指定时间运行程序

解决方案 »

  1.   

    在注册表的localmachine-->.......-->windows---->....---->run里面加上你要执行的文件!!
    然后在FORM里面编写代码如下
    sub form_load()
    with timer1
    .enabled=true
    .intravl=1000
    end with
    end subsub timer_time()
    if cstr(hour(time))=trim(23) then
    ..........'这里写你要做的事情
    end if
    end sub
      

  2.   

    接上:纠错
    if cstr(hour(time))=cstr(trim(23)) then
      

  3.   

    在注册表的localmachine-->.......-->windows---->....---->run里面加上你要执行的文件!!? shell命令不就解决了么?
      

  4.   

    最好是使用Windows98的计划任务。或者使用Timer控件读去系统时间。