Dumb question. I searched for an answer but didn't find what I was looking for. I want to create a user control for date entry that would consist of a textbox for typing a date and a date time picker for using the mouse. It will have some validations for valid dates, etc. That I can do. My question is once this control is on a windows form, how can I setup a validation event on the form that will run the validation of the user control and then let me do other stuff. Example: Using the control as an invoice date and recalculating the due date once the invoice date is validated. Here is a sample of what I would like to do only having it be the validation on the user control not the dtp.
Not sure how to set this up. Is this where I would use an override?
Auguy
Sylvania/Toledo Ohio
Code:
Private Sub dtp_Validated(ByVal sender As Object, ByVal e As System.EventArgs) Handles dtpInvoiceDate.Validated, dtpDueDate.Validated
Dim myDtp As DateTimePicker
myDtp = DirectCast(sender, DateTimePicker)
If myDtp.Value = DateMinimum Then
myDtp.CustomFormat = " "
Else
myDtp.CustomFormat = "MM/dd/yyyy"
End If
If myDtp.Name.ToUpper = "dtpInvoiceDate".ToUpper Then
SetDueDate()
End If
End Sub
Auguy
Sylvania/Toledo Ohio