Hey guys. I have set up a Calendar pick (Calendar Control 9.0) when anyone clicks on a date formatted cell. But when I resize the calendar, save, close, then reopen, it shrinks, but the font stays the same, so it basically squishes the fonts so you can't read it. Is there a way to fix this, or make sure the size stays constant? Here is my code to pop up the calendar
Code
ActiveSheet.Calendar1.Visible = True
With ActiveCell.Next
ActiveSheet.Calendar1.Left = .Left
ActiveSheet.Calendar1.Top = .Top
End With
End
Thanks in advance!