Can someone please show me how to properly code for the following logic. I can't seem to figure this one out.
I am trying to get my app to show a weekly TO DO list for THIS week. (this week Mon -> Sun night)
Thanks for any help
I am trying to get my app to show a weekly TO DO list for THIS week. (this week Mon -> Sun night)
VB.NET:
' check if we should open this week's list NOT last week's list
IF today() is between last Monday & this Monday AND _
if time () is between 12 midnight AND 1pm then 'check if we should show morning or evening shift schedule
Me.datagridview1.datasource = Sql
End If
Thanks for any help