Calendar Code Question

D

Dave Elliott

I have a popup form with a calendar on it that upon closing it sets the
forms date to whatever is chosen via the calendar. Is there a way to have
the calendar only show the current week only? By current week, I mean the
week would have to be from Wednesday Thru Thursday for the current week
only??
Forms name is Set TimeCards Date
 
A

Abe Munk

it seems from your question that the date to select must be from the proper
week. If so, I would just create my own form with 7 buttons. Have the caption
of each be based on the current date (ie me.buton2.caption =
format(dateadd("d",2,[StartDate]).
 
Top