@H_404_1@在组合查询的窗体李面有两个窗体的选项带时间和日期的输入,但是时间和日期的输入都需要一定的格式才能被数据库所识别,那么怎样才能让用户直接就能方便的输入数据而又不违反格式规定呢?
@H_404_1@ 在组合窗体的内容项上,我添加了DTpiker的这个控件,从而就可以实现规范输入了,但是要怎么使用呢?
@H_404_1@首先把窗体建好后,插入日期控件
@H_404_1@
@H_404_1@
@H_404_1@然后在字段选择的combo框的click事件里写下如下代码
@H_404_1@
If CombField(Index).Text = "上机时间" Or CombField(Index).Text = "下机时间" Then DTPicker1(Index).Visible = True DTPicker1(Index).Format = dtpTime <span style="color:#009900;">'时间的格式</span> txtInquir(Index).Text = DTPicker1(Index).Value End If If CombField(Index).Text = "上机日期" Or CombField(Index).Text = "下机日期" Then DTPicker1(Index).Visible = True DTPicker1(Index).Format = dtpShortDate <span style="color:#009900;">'日期的格式</span> txtInquir(Index).Text = DTPicker1(Index).Value End If
@H_404_1@
Private Sub DTPicker1_Change(Index As Integer) txtInquir(Index).Text = DTPicker1(Index).Value End Sub
然后就实现可选择式输入时间了
@H_404_1@
@H_404_1@
原文链接:https://www.f2er.com/vb/257335.html