怎样在VB程序中调用数据库文件中的数据?
小弟是初学者,想计算系统当前日期与保存在数据库文件中日期相隔几天,如何实现?
小弟是初学者,想计算系统当前日期与保存在数据库文件中日期相隔几天,如何实现?
已轻易获得系统时间:
dim curTime , curYear, curMonth, curDay
curTime=Now()
curYear = Year(curTime)
curMonth = Month(curTime)
curDay = Day(curTime)
其它的我再一试!谢谢版主!