Calender Help

  • Thread starter Thread starter Greg B
  • Start date Start date
G

Greg B

I have a userform which uses the Calender Control but I need the calender to
show todays date,

I also have a probloem when I access this file on another computer on my
network The font size of the calender is impossible to see. When I try to
change the font size it comes up with the error - object not found. I
copied the file to the computer which I was using by a disc, and the same
problem happened.

The excel where the project was first written was office pro 2003, the
other computer is running office 2000

Thanks in advance

Greg
 
Not sure about the "object not found error", but this is what I use to
display the Calendar Control:

Option Explicit
Sub ShowCalendar()
Dim newDate As String
Load frmCal

newDate = Format(Now(), "mm/dd/yyyy")

frmCal.Calendar1.Value = newDate
frmCal.Show
End Sub

I hope that helps.
 

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

Back
Top