1、如何加载
VB默认的控件栏中是没有DTpicker日期控件的,添加过程:工具——部件——控件——“Microsoft Windows Common Controls-2.6.0”——应用——确定
2、如何与数据库中的日期格式相符合
DTPicker1.Format = dtpCustom
DTPicker1.CustomFormat = "yyyy.mm.dd"
DTPicker1.CustomFormat
我自己的方法:
控制面板——区域和语言设置——自定义——日期——短日期格式设置成需要的模式,如:YYYY.MM.DD
3、在sql语言中取值
"select * from ic_coach where run_date>'"& DTPicker1.Value & "'" & "and run_date<'" & DTPicker2.Value & "'"
原文链接:https://www.f2er.com/vb/258397.html