S
Steven Spencer \(Spinalogic\)
Dim dlg As New dlgChangeDate
Dim fromdate As DateTime = dlg.GetaDate(System.DateTime.Now, "Please Enter
the Start of the Holiday")
If (Not fromdate.CompareTo(New DateTime(1, 1, 1, 1, 1, 1, 1)) = 0) Then
While IsDateBetweenShifts(fromdate, cboHolidayDoctors.SelectedValue)
MsgBox("The date you have entered does not occur between the
shifts specified on that day.")
fromdate = dlg.GetaDate(System.DateTime.Now, "Please Enter the
Start of the Holiday")
If IsNothing(fromdate) Then
Exit While
End If
End While
End if
My dialog just gets a date time. It returns nothing for a failure.
I tried making the if statement " if not IsNothing(fromDate) then" and this
still ran, so I tried the godawful combination that I have now.
Now I have checked in the debugger, the statement "(Not
fromdate.CompareTo(New DateTime(1, 1, 1, 1, 1, 1, 1)) = 0) " is false. This
means that the if statement shouldn't run.
HOWEVER the statement ALWAYS enters the if statement block. Before you ask,
I have written an else statement and NOT clicked cancel and this results in
the statement returning true, and THEN entering the if block (not the else
block). Its as if its discarding the if statement and just entering anyway.
For the life of me I cannot spot this error, and I'm on the managed MSDN so
I'd really appreciate some help here from MVP/MSFT.
Cheers.
Dim fromdate As DateTime = dlg.GetaDate(System.DateTime.Now, "Please Enter
the Start of the Holiday")
If (Not fromdate.CompareTo(New DateTime(1, 1, 1, 1, 1, 1, 1)) = 0) Then
While IsDateBetweenShifts(fromdate, cboHolidayDoctors.SelectedValue)
MsgBox("The date you have entered does not occur between the
shifts specified on that day.")
fromdate = dlg.GetaDate(System.DateTime.Now, "Please Enter the
Start of the Holiday")
If IsNothing(fromdate) Then
Exit While
End If
End While
End if
My dialog just gets a date time. It returns nothing for a failure.
I tried making the if statement " if not IsNothing(fromDate) then" and this
still ran, so I tried the godawful combination that I have now.
Now I have checked in the debugger, the statement "(Not
fromdate.CompareTo(New DateTime(1, 1, 1, 1, 1, 1, 1)) = 0) " is false. This
means that the if statement shouldn't run.
HOWEVER the statement ALWAYS enters the if statement block. Before you ask,
I have written an else statement and NOT clicked cancel and this results in
the statement returning true, and THEN entering the if block (not the else
block). Its as if its discarding the if statement and just entering anyway.
For the life of me I cannot spot this error, and I'm on the managed MSDN so
I'd really appreciate some help here from MVP/MSFT.
Cheers.