怎样在visual foxpro上显示“今天是x年x月x日”,跟随系统时间。
发布网友
发布时间:2024-10-01 16:36
我来回答
共1个回答
热心网友
时间:2024-10-21 07:48
clear
set talk off
do while .t.
x=date()
t=time()
y=year(x)
m=month(x)
d=day(x)
@ 10,10 say '今天是'+str(y,4)+'年'+str(m,2)+'月'+str(d,2)+'日 '+t
enddo
set talk on
retu