I got a table that i’m quering to get the DeliveryDate but some of the records don’t have DeliveryDate so VB considers that as 00:00:00.
How do I make an IF condition to check a date and see if it’s 00:00:00?
Because I want to set a variable to TRUE when the date is nothing(00:00:00).
You can check if your Date equals the date part:
If DeliveryDate.Date = DeliveryDate Then ...