I need to find a way to find the date (DD/MM/YYYY) of the Monday for any week we\'re on.
For example, for this week, monday would be 09/11/2009, and if this were nex
There is a day of week method that you can use
Dim instance As DateTime Dim value As DayOfWeek value = instance.DayOfWeek
see: http://msdn.microsoft.com/en-us/library/system.datetime.dayofweek.aspx