Dates Between Date
Visual Basic
3
Posts
2
Posters
0
Views
1
Watching
-
Hi all, How can I check a given date is falling between a given startDate and EndDate.How can I check this in VB.Net Thanks Dana
-
Hi all, How can I check a given date is falling between a given startDate and EndDate.How can I check this in VB.Net Thanks Dana
-
Something like:
If myDate >= startDate AndAlso myDate <= EndDate Then
' Do something
End IfPaul Marfleet "No, his mind is not for rent To any God or government" Tom Sawyer - Rush
Thank you. That has done the trick Dana