For those who are wondering "Stand alone" means exactly that.... No external code or references required.
Simply place the userform "DatePickUserForm" and it's code into your project and setup / reference it as below....
DatePickUserForm.MinDate = ""
'If MinDate not specified then 1/1/101 is assumed
'If MinDate is specified then MinDate must be a valid date equal to or greater than 1/1/101 else error resluts
'MinDate must be less than MaxDate else error results
DatePickUserForm.MaxDate = ""
'If MaxDate not specified then 31/12/9999 is assumed
'If MaxDate is specified then MaxDate must be a valid date equal to or less than 31/12/9999 else error resluts
'MaxDate must be greater than MinDate else error results
DatePickUserForm.StartDate = Date
'If StartDate not specified and current date between MinDate and MaxDate then current date assumed
'If StartDate not specified and current date not between MinDate and MaxDate then error results
'If StartDate is specified then StartDate must be a valid date between MinDate and MaxDate else error results
DatePickUserForm.PickDate = "Long"
'PickDate can be "Long" (e.g. 01/01/2011) or "Short" (e.g. 1/1/2011)
'If PickDate is not specified or invalid then "Long" is assumed
DatePickUserForm.TodayCB.Enabled = True
'Today Button will only be available if current date is between MinDate and MaxDate
'Today Button can be disabled by changing the above setting to False
DatePickUserForm.CancelCB.Enabled = True
'Cancel Button will return a "" result
'Cancel Button can be disabled by changing the above setting to False
DatePickUserForm.Show
'Result date is retrieved from DatePickUserForm.PickDate (see line below)
result = DatePickUserForm.PickDate
The ProSoft Solutions Date Picker.xlsm file has all you need including the userform, setup code and instructions plus a demo worksheet so you can play around a bit....
Cheers,
Chris