~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
: I'm in the process of building a conference room booking app. I need to be
: able to handle recurring dates i.e: every friday at 3pm or every 2nd
: tuesday and so on. Any help would be appreciated.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
That's nice - but what's the problem?
Suppose I want to add a booking for the next x Fridays.
Get the date of the first Friday that you want to add a booking for.
Use DateAdd() to add 1 week to the date to get the next booking date
Do this x times.
Cheers
Ken