Entering a span of dates on a form

J

Joe Cilinceon

I was wondering if it is possible to use a calendar control to pick a start
and end date and have it add a record to a table for each day in the span.
If so how would one set this up or where could I find an example of it.
 
R

Rob Oldfield

dim d as date
for d=me.calctl1 to me.calctl2
'do whatever you want with d
next
 
Top