Click here to Skip to main content
15,908,776 members

Comments by ANANTH P (Top 13 by date)

ANANTH P 2-Dec-11 0:53am View    
while dr.read "dr" shows already being used
ANANTH P 1-Dec-11 5:33am View    
hi, i got the output,but if the combobox visible property is set to false then the above solution is not working
ANANTH P 1-Dec-11 1:41am View    
tank u
ANANTH P 30-Nov-11 1:06am View    
hi thanks for ur reply , i tried the above coding , the time value is not changing from the datetimepicker, value 0 is returning for the above coding
ANANTH P 29-Nov-11 0:44am View    
Dim date1 As Date = Me.DateTimePicker2.Value
Dim date2 As Date = Me.DateTimePicker3.Value

If (Me.DateTimePicker3.Value <= Me.DateTimePicker2.Value) Then
TextBox9.Text = "ON-TIME"
ElseIf (Me.DateTimePicker3.Value > Me.DateTimePicker2.Value) Then
TextBox9.Text = "DELAY"
End If


here i validate the date and display the status in the textbox now by setting the datetimepicker customformat to "MMM dd, yyyy hh:mm:ss tt " i need to validate the time also....