Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 22
Default Calendar Gridcells


My major problem is getting text inside the calender
gridcell.

Is this possible. I can't see the point of a calendar if
you cant update with appointments etc. I was hoping for a
Userform1.calendar1.text command.

Does anyone have any ideas ?


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 88
Default Calendar Gridcells

Hi Marcus,

Marcus wrote:
My major problem is getting text inside the calender
gridcell.

Is this possible. I can't see the point of a calendar if
you cant update with appointments etc. I was hoping for a
Userform1.calendar1.text command.

Does anyone have any ideas ?


after a date selection you could give references over ControlTipText .
Or show the text in a label on the UserForm:

Private Sub Calendar1_Click()
With Calendar1
Select Case CDate(.Value)
Case #4/29/2004#
.ControlTipText = "Meeting with the boss"
Label1.Caption = "Meeting with the boss"
Case Else
.ControlTipText = "no appointment"
Label1.Caption = "no appointment"
End Select
End With
End Sub

--
Mit freundlichen Grüssen

Melanie Breden
- Microsoft MVP für Excel -

http://excel.codebooks.de (Das Excel-VBA Codebook)

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 22
Default Calendar Gridcells

thanks Melanie
Marcus
-----Original Message-----
Hi Marcus,

Marcus wrote:
My major problem is getting text inside the calender
gridcell.

Is this possible. I can't see the point of a calendar if
you cant update with appointments etc. I was hoping

for a
Userform1.calendar1.text command.

Does anyone have any ideas ?


after a date selection you could give references over

ControlTipText .
Or show the text in a label on the UserForm:

Private Sub Calendar1_Click()
With Calendar1
Select Case CDate(.Value)
Case #4/29/2004#
.ControlTipText = "Meeting with the boss"
Label1.Caption = "Meeting with the boss"
Case Else
.ControlTipText = "no appointment"
Label1.Caption = "no appointment"
End Select
End With
End Sub

--
Mit freundlichen Grüssen

Melanie Breden
- Microsoft MVP für Excel -

http://excel.codebooks.de (Das Excel-VBA Codebook)

.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Convert date from Gregorian Calendar to Hijri Calendar H.Alkhodary Excel Discussion (Misc queries) 1 February 21st 09 10:11 AM
find free sharware to include calendar pop or use calendar in cell ednc Excel Discussion (Misc queries) 2 April 14th 08 05:05 PM
how do i export excel calendar info to outlook calendar? Maggie Excel Discussion (Misc queries) 1 December 31st 07 10:27 PM
excel calendar - list of names displayed on calendar Brian'88 Excel Worksheet Functions 3 November 17th 06 10:31 PM
import calendar items from excel into outlook calendar jsewaiseh Excel Discussion (Misc queries) 0 September 2nd 05 03:53 PM


All times are GMT +1. The time now is 07:38 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"