|
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
大佬,请问我还要再加2个日期的选择栏TextBox9、10,代码要怎么加呢?
Private Sub datewithChange() '调整时间时,TextBox里的值跟着变
If frm_query.Visible Then
If Cs Then frm_query.TextBox7.Value = Left(ComboBoxY.Value, 4) & "-" & Format(Split(ComboBoxM.Value, "月")(0), "00") & "-" & Format(Split(TextBoxD.Value, "日")(0), "00")
If Ce Then frm_query.TextBox8.Value = Left(ComboBoxY.Value, 4) & "-" & Format(Split(ComboBoxM.Value, "月")(0), "00") & "-" & Format(Split(TextBoxD.Value, "日")(0), "00")
End If
End Sub |
|