Calendar Control Today's Date

W

Wayne Morgan

Do you get any error messages? Form_Open may be too soon, try Form_Load
instead.
 
J

Jeff Conrad

Move the code to the form Load event; the Open event is too soon.
You could also use this code, but it still should be in the Load event:

calDate.Today
 
Top