You mean the Date day value, MonthCalendar is just a control for working with Date values. Use the ToString method for the Date value specifying the custom display format:
VB.NET:
Dim d As Date = Me.MonthCalendar1.SelectionStart
Dim day As String = d.ToString("dddd")
Look up DateTime.ToString(String) method in help and follow the link for the "Custom Date and Time Format Strings" topic to learn more about this.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.