我遇到过将DTpicker用于日期的问题。所以我添加了自己的日历弹出窗口,现在当我在usereform中并单击日历的框或按钮时,它会在原始电子表格上填充日期(它看起来像在最后选择的单元格中)而不是我的用户窗体 - TextBox8。我很茫然,有时候它会像我预期的那样工作,有时则不会和以前一样。
Private Sub Date_Button_1_Click()
UserForm1.TextBox8 = ActiveCell
'this is the first calendar button & box
frmCalendar.Show_Cal
UserForm1.TextBox8.Value = g_sDate
End Sub
Private Sub TextBox8_Enter()
UserForm1.TextBox8 = ActiveCell
g_bForm = True
frmCalendar.Show_Cal
UserForm1.TextBox8.Value = g_sDate
End Sub
我确信它正盯着我。任何援助都会很棒。感谢。