I'm currently creating an auction website using asp and vb.net. I want to manipulate the calendar so that only dates after the current date are selectable. How can I go about this? Thanks

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

You'll have to do it manually, I think. If the user selects an earlier date (you can gauge this with the "Changed" event), you can restore it to the current date and give an error message.

For example (in regular VB.NET)

Private Sub DateTimePicker1_ValueChanged(sender As System.Object, e As System.EventArgs) Handles     DateTimePicker1.ValueChanged
         If DateTimePicker1.Value < Now Then
            DateTimePicker1.Value = Now
            MsgBox("Error!")
         End If
    End Sub

Or, more directly, using the MinDate property of the control:

dateTimePicker1.MinDate = DateTime.Today
link|improve this answer
Thanks, that logic works. Just thought there might be a way for those dates to not be selectable at all. i.e. blacked out or something – Matt Aug 13 '11 at 10:59
@Matt Yes, I should have read the docs a bit more closely, there is a property of the control that does this. – jonsca Aug 13 '11 at 11:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.