Click here to Skip to main content
15,888,351 members
Articles / Programming Languages / C#
Article

Nullable DateTimePicker

Rate me:
Please Sign up or sign in to vote.
4.84/5 (41 votes)
17 Nov 2003 417.7K   18.2K   54   60
A standard DateTimePicker control that enables users to enter null value. The fact that it's not intensively modified ensures that it has no potential errors.

Sample Image - Nullable_DateTimePicker.jpg

Introduction

I had do a research on a DateTimePicker that could enter null value and found a lot of solutions to it. But one major problem with those is that they behave quite different from the standard ones and may have many potential bugs, as a result it took time to test before using in a real application. I just found another simple solution that could solve this problem with a little modification, so it could promise no bugs :-).

Solution

I have overridden the Value property to accept Null value as DateTime.MinValue, while maintaining the validation of MinValue and MaxValue of the standard control. That's all there's to it.

Because it's so simple, there's not much to say about it. Please refer to code for details.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Vietnam Vietnam
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
PraiseSimple is beautiful! Pin
ineedajobsoon4-Mar-16 2:54
ineedajobsoon4-Mar-16 2:54 
QuestionNullable DateTimePicker Pin
Member 1174358825-Jun-15 20:47
Member 1174358825-Jun-15 20:47 
QuestionKhông sử dụng được Custom Format Pin
Do Cao Tri13-Dec-14 5:25
Do Cao Tri13-Dec-14 5:25 
QuestionNot work anymore ? Pin
duonglei16-Jun-14 22:20
duonglei16-Jun-14 22:20 
QuestionData Binding Pin
wiggles30-May-14 5:50
wiggles30-May-14 5:50 
QuestionProblem with this control Pin
MarkRyan19811-Jan-14 23:53
MarkRyan19811-Jan-14 23:53 
QuestionNot able to download the Source Files Pin
hdng7631-Oct-12 5:00
hdng7631-Oct-12 5:00 
QuestionHow easy is that!! Pin
Woody10022-Sep-12 0:30
Woody10022-Sep-12 0:30 
QuestionJust what I needed Pin
gemini_dk20-Dec-11 4:43
gemini_dk20-Dec-11 4:43 
AnswerRe: Just what I needed Pin
jf6425-Jan-12 4:57
jf6425-Jan-12 4:57 
GeneralNo hour in sql database Pin
cyrilcp9-Nov-10 0:16
cyrilcp9-Nov-10 0:16 
GeneralValidation wrong value fix Pin
PREMSONBABY20-May-10 4:38
PREMSONBABY20-May-10 4:38 
GeneralRe: Validation wrong value fix Pin
oliwan30-Sep-10 12:16
oliwan30-Sep-10 12:16 
GeneralRe: Validation wrong value fix Pin
DeuceDude28-Oct-11 15:46
DeuceDude28-Oct-11 15:46 
Generalthank you for your help! Pin
wuhai08095-May-10 14:52
wuhai08095-May-10 14:52 
GeneralSet Nullable DateTimePicker default value [00/00/0000] Pin
tinhleduc26-Feb-10 0:27
tinhleduc26-Feb-10 0:27 
GeneralUpdate Pin
Romain TAILLANDIER21-Sep-09 22:37
Romain TAILLANDIER21-Sep-09 22:37 
GeneralThis is a very insightful approach to the problem Pin
Phil Raevsky28-Aug-09 16:01
Phil Raevsky28-Aug-09 16:01 
GeneralThis one dispaly pink if null date (VB.NET) Pin
Larry Rouse28-Aug-09 11:32
Larry Rouse28-Aug-09 11:32 
Imports System
Imports System.Windows.Forms
Namespace Controls
Public Class DateTimePicker
Inherits System.Windows.Forms.DateTimePicker
Private bIsNull As Boolean = False
Private mBackColor As Color = SystemColors.Window
Public Sub New()
MyBase.New()
End Sub
Public Shadows Property Value() As DateTime
Get
If bIsNull Then
Return DateTime.MinValue
Else
Return MyBase.Value
End If
End Get
Set(ByVal value As DateTime)
If value = DateTime.MinValue Or value.Date = "01/01/1905" Or value.Date = "01/01/1900" Then
If bIsNull = False Then bIsNull = True
MakePinkFormat()
Else
MakeWhiteFormat()
bIsNull = False
MyBase.Value = value
End If
End Set
End Property
' Protected Overloads Overrides Sub OnCloseUp(ByVal eventargs As EventArgs)
Protected Overrides Sub OnCloseUp(ByVal eventargs As EventArgs)

If Control.MouseButtons = MouseButtons.None Or Control.MouseButtons = Windows.Forms.MouseButtons.Left Then
Me.Value = MyBase.Value
End If
MyBase.OnCloseUp(eventargs)
End Sub
Protected Overloads Overrides Sub OnKeyDown(ByVal e As KeyEventArgs)
MyBase.OnKeyDown(e)

If e.KeyCode = Keys.Delete Then
Me.Value = DateTime.MinValue
MyBase.Value = "01/01/1905"
End If
End Sub
Private Sub MakePinkFormat()
Me.Format = DateTimePickerFormat.[Custom]
Me.BackColor = Color.Pink
Me.CustomFormat = " "
MyBase.Value = "01/01/1905"
End Sub
Private Sub MakeWhiteFormat()
Me.Format = DateTimePickerFormat.Short
Me.BackColor = Color.White
Me.CustomFormat = Nothing
End Sub
'The BackColor property we will be calling
Public Overrides Property BackColor() As Color
Get
Return mBackColor
End Get
Set(ByVal Value As Color)
mBackColor = Value
'After the BackColor has been set, Invalidate the control
'This will force it to be redrawn
'Me.Invalidate()
End Set
End Property
'WndProc fires durring the painting of the control
Protected Overrides Sub WndProc(ByRef m As Message)
'Check to see if message being send is WM_ERASEBKGND.
'The hex value of this message is &H14.
'This message is sent when the background of the
'object needs to be erased. In our case though, instead of
'erasing it, we will paint a rectangle over it
If m.Msg = CInt(&H14) Then ' WM_ERASEBKGND
Dim g As Graphics = Graphics.FromHdc(m.WParam)
g.FillRectangle(New SolidBrush(mBackColor), ClientRectangle)
g.Dispose()
Return
End If
MyBase.WndProc(m)
End Sub
Private Sub DateTimePicker_EnabledChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.EnabledChanged
Me.CalendarForeColor = Color.Black
End Sub
End Class
End Namespace
GeneralThis one works! (VB 2008) [modified] Pin
Jeromeyers10-Feb-09 12:55
Jeromeyers10-Feb-09 12:55 
GeneralRe: This one works! (VB 2008) Pin
EMYNA28-Oct-09 12:40
EMYNA28-Oct-09 12:40 
GeneralRe: This one works! (VB 2008) [modified] Pin
Chris Wineinger13-Feb-13 8:31
Chris Wineinger13-Feb-13 8:31 
GeneralUse the Nullable Datetime for a more updated solution. Pin
chstngs7-Oct-08 5:39
chstngs7-Oct-08 5:39 
GeneralIt's really great! Thank you very much!! Pin
wxpwu15-Jun-08 2:48
wxpwu15-Jun-08 2:48 
GeneralSmall correction Pin
Maxxx33316-Nov-06 1:32
Maxxx33316-Nov-06 1:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.