tmp=split(Date,"-")
If tmp(1)<10 then
tmp(1)="0"+Cstr(tmp(1))
End if
If tmp(2)<10 then
tmp(2)="0"+Cstr(tmp(2))
End if
msgbox tmp(0)+"-"+tmp(1)+"-"+tmp(2)作者: walker1020 时间: 2007-7-19 23:13
楼上的方法是可行的。我就曾经写过类似的函数,就是为了得到有需要的格式的日期作者: 郁金香 时间: 2007-7-20 11:22
在此谢谢各位的帮助!