是否可以使用MonthCalendar
选择并加粗非连续日期,然后将它们存储在SQL表中?
我从这里尝试了第三个月的日历(codeproject.com/Articles/10840/Another-Month-Calendar)。我可以使用Ctrl键选择多个日期。作者给出了以下代码:
Private Sub monthCalendar2_DaySelected(sender As Object, e As
Pabo.Calendar.DaySelectedEventArgs)
' Using the days from the EventArgs
m_daysSelected = e.Days
' Using SelectedDates
m_dates = MonthCalendar2.SelectedDates
End Sub.
但是,我不知道如何使用它来存储我的Sql表中的选定日期。任何帮助将不胜感激。