User-1999980185 posted
The following code is how I get the Selected First Date and S
In VB this code will select the first date selected and the last date selected
For Each Day In Calendar1.SelectedDates
Working_day = Day
If Check_Date_Swch = "no" Then
Process_First_Date = Working_day
End If
Check_Date_Swch = "yes"
' Now add entry to my DateArray
DateArray(ArrayNo) = Working_day.ToString
ArrayNo = ArrayNo + 1
Next
elected Last Date in a Calendar in VB. How do I get the first and last date selected in C#