ActiveX calender

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have 2 calenders on one form. I'm trying to use this to default them to
the current days date. This is in Access 97.

Private Sub Form_Load()
Me.StarDate1.Today
Me.EndDate1.Today
End Sub
 
Use the following code

Private Sub_FormLoad()
me.starDate1.value = date
me.endDate1.value = date
end sub

T Martin
 
Well I know for a fact that I have the name correct in both the code and on
the calender's properties, but it is giving me a compile error saying,
"Method or Data Member not found." I can't seem to find the calenders in the
expression builder either. Any ideas?

Thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top