

The calendar looks like the MonthCalendar control, which can be used for selecting multiple dates. When used to represent a date, the DateTimePicker control appears in two parts: a drop-down list with a date represented in text, and a calendar that appears when you click the down-arrow next to the list.

The DateTimePicker control only supports Gregorian calendars. The DateTimePicker control makes it easy to work with dates and times because it handles a lot of the data validation automatically. The DateTimePicker control is used to allow the user to select a date and time, and to display that date and time in the specified format. ' Show the CheckBox and display the control as an up-down control. ' Create a new DateTimePicker control and initialize it.ĭim dateTimePicker1 As New DateTimePicker()ĭateTimePicker1.MinDate = New DateTime(1985, 6, 20)ĭateTimePicker1.CustomFormat = "MMMM dd, yyyy - dddd"ĭateTimePicker1.Format = DateTimePickerFormat.Custom Show the CheckBox and display the control as an up-down control.ĭateTimePicker dateTimePicker1 = new DateTimePicker() ĭateTimePicker1.MinDate = new DateTime(1985, 6, 20) ĭateTimePicker1.MaxDate = DateTime.Today ĭateTimePicker1.CustomFormat = "MMMM dd, yyyy - dddd" ĭateTimePicker1.Format = DateTimePickerFormat.Custom Create a new DateTimePicker control and initialize it.ĭateTimePicker^ dateTimePicker1 = gcnew DateTimePicker ĭateTimePicker1->MinDate = DateTime(1985,6,20) ĭateTimePicker1->MaxDate = DateTime::Today ĭateTimePicker1->CustomFormat = "MMMM dd, yyyy - dddd" ĭateTimePicker1->Format = DateTimePickerFormat::Custom
#DATECONTROL MULTIDATE CODE#
To run this example, paste the following code into a form and call the CreateMyDateTimePicker method in the example form's constructor or Load event handling method. Also, the ShowCheckBox property is set so that the control displays a CheckBox, and the ShowUpDown property is set so that the control is displayed as a spin button control. The control's CustomFormat property is set. The following code example creates an new instance of a DateTimePicker control and initializes it. Inherit Control Public Class DateTimePickerĭefaultBindingPropertyAttribute ClassInterfaceAttribute ComVisibleAttribute Examples Public class DateTimePicker : type DateTimePicker = class In this article public ref class DateTimePicker : System::Windows::Forms::Control public class DateTimePicker :
#DATECONTROL MULTIDATE WINDOWS#
Represents a Windows control that allows the user to select a date and a time and to display the date and time with a specified format.
