PC Review


Reply
Thread Tools Rate Thread

Calendar resize

 
 
Phil
Guest
Posts: n/a
 
      3rd Apr 2008
After installing a calendar into a spreadsheet following:
http://www.rondebruin.nl/calendar.htm

I have slightly modified the code to make the calendar appear to the right
and down a little from the cell, see below:

Private Sub Calendar1_Click()
ActiveCell.Value = CDbl(Calendar1.Value)
ActiveCell.NumberFormat = "dd/mm/yyyy"
ActiveCell.Select
End Sub

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
If Not Application.Intersect(Range("B4:B1100,C4:C1100,Q4:Q1100"),
Target) Is Nothing Then
Calendar1.Left = Target.Left + (Target.Width * 1.1)
Calendar1.Top = Target.Top + 30
Calendar1.Visible = True
' select Today's date in the Calendar
Calendar1.Value = Date
ElseIf Calendar1.Visible Then Calendar1.Visible = False
End If
End Sub

I have found that the calendar resizes itself, making it too small to use.
The file the calendar is in is accessed by several people and it almost seems
as soon as the file is saved and accessed by another the calendar changes
size.

Is there any way of locking the size of the calendar?

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Windows Calendar - Resize SDreamer Windows Vista General Discussion 1 6th Feb 2008 11:37 PM
Resize the Notes/TaskPad area in Outlook Weekly Calendar print =?Utf-8?B?U2hhbmUuSXMuUm9vdA==?= Microsoft Outlook Discussion 0 5th Oct 2006 08:13 PM
resize the date/day boxes in calendar month view =?Utf-8?B?TWFyaw==?= Microsoft Outlook Discussion 0 20th Jun 2006 07:44 PM
How can I resize areas of a calendar page? =?Utf-8?B?R2VhbiBNdW5nZXI=?= Microsoft Outlook Discussion 0 7th Dec 2005 06:17 PM
Calendar Controls Unexpectedly Resize or Move on a Custom Form fred Microsoft Outlook Form Programming 5 30th Jul 2003 08:13 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 03:48 PM.