求一语句:显示系统日期, 时间
放在form1上,用text 或 label 显示
    form1运行不关最好能实时显示时间

解决方案 »

  1.   

    Now 函数
          返回一个 Variant (Date),根据计算机系统设置的日期和时间来指定日期和时间。语法Now
    Date 函数
          返回包含系统日期的 Variant (Date)。语法Date说明为了设置系统日期,请使用 Date 语句。Time 函数
          返回一个指明当前系统时间的 Variant (Date)。语法Time说明为了设置系统时间,请使用 Time 语句。
    日期与时间关键字总结
    作用 关键字 
    设置当前日期或时间。 Date ,Now, Time 
    计算日期。 DateAdd, DateDiff, DatePart 
    返回日期。 DateSerial, DateValue 
    返回时间。 TimeSerial, TimeValue 
    设置日期或时间。 Date, Time 
    计时。 Timer 
      

  2.   

    viena(维也纳nn-实心木头人) 
    //哈哈  请关注 我还将继续放分
      

  3.   

    用一个定时器timer
    sub timer_timer()
    text1.text=now
    end sub