looks easy to impliment! Thanks for the additional information.
Um, or you could just really use the TimeOfDay property, like Peter
said:
TimeSpan ts1 = dtdate1.TimeOfDay;
TimeSpan ts2 = dtdate2.TimeOfDay;
And then compare those. No need to perform an extra operation when the
logic is encapsulated for you already.

Signature
- Nicholas Paldino [.NET/C# MVP]
- mvp@spam.guard.caspershouse.com
> looks easy to impliment! Thanks for the additional information.
>
[quoted text clipped - 20 lines]
>> > on the strings.
>> > Thanks Paul.
Paul - 07 Jan 2008 21:24 GMT
Ended up just using the time span time of day as Pete suggested, got rid of
some extra variables as well!

Signature
Paul G
Software engineer.
> Um, or you could just really use the TimeOfDay property, like Peter
> said:
[quoted text clipped - 29 lines]
> >> > on the strings.
> >> > Thanks Paul.