Code:
If yourDate.Month >= Me.DateTimePicker1.Value.Month AndAlso yourDate.Month =< Me.DateTimePicker2.Value.Month Then
If yourDate.Day >= Me.DateTimePicker1.Value.Day AndAlso yourDate.Day =< Me.DateTimePicker2.Value.Day Then
'do something
End If
End If
Bobby