Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub dtpWeekly_CloseUp()
' Force the date in the DateTimePicker to Monday.
dtpWeekly.DayOfWeek = 2
End Sub
/[code]
If you want a particular day of the month (for example, the 21st), then one can do something like:
[code]
Private Sub dtpWeekly_CloseUp()
' Force the date in the DateTimePicker to the 21st.
dtpWeekly.Day = 21
End Sub
/[code]
HTH,
Cassandra