<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : Tooltip in day view</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Calendar : Tooltip in day view]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 10:00:28 +0000</pubDate>
  <lastBuildDate>Mon, 09 Oct 2006 18:41:41 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=4538</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[Tooltip in day view : It worked perfectly. It&amp;#039;s...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4538&amp;PID=16420&amp;title=tooltip-in-day-view#16420</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2162">celebre</a><br /><strong>Subject:</strong> 4538<br /><strong>Posted:</strong> 09 October 2006 at 6:41pm<br /><br /><P>It worked perfectly. It's clear now.</P><P>Thx for&nbsp;your help.&nbsp;<img src="https://forum.codejock.com/smileys/smiley1.gif" border="0"></P>]]>
   </description>
   <pubDate>Mon, 09 Oct 2006 18:41:41 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4538&amp;PID=16420&amp;title=tooltip-in-day-view#16420</guid>
  </item> 
  <item>
   <title><![CDATA[Tooltip in day view :  Well, why do you need this loop...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4538&amp;PID=16419&amp;title=tooltip-in-day-view#16419</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 4538<br /><strong>Posted:</strong> 09 October 2006 at 5:20pm<br /><br />Well, why do you need this loop at all?<br><br>Simple modifying of your code in a following way works just fine for me showing a needed tooltip (tried it in Access):<br><table width="99%"><tr><td><pre class="BBcode"><br>Private Sub CalendarControl1_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal x As Long, ByVal y As Long)<br>&nbsp;&nbsp;&nbsp; Dim HitTest As CalendarHitTestInfo<br>&nbsp;&nbsp;&nbsp; Set HitTest = CalendarControl1.ActiveView.HitTest<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; If (Not HitTest.ViewEvent Is Nothing) Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CalendarControl1.ControlTipText = "&#091;" &amp; HitTest.ViewEvent.Event.Id &amp; "&#093; " &amp; HitTest.ViewEvent.Event.Subject<br>&nbsp;&nbsp;&nbsp; Else<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CalendarControl1.ControlTipText = ""<br>&nbsp;&nbsp;&nbsp; End If<br>End Sub<br></pre></td></tr></table><br><br>--<br>WBR,<br>Serge<br>]]>
   </description>
   <pubDate>Mon, 09 Oct 2006 17:20:45 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4538&amp;PID=16419&amp;title=tooltip-in-day-view#16419</guid>
  </item> 
  <item>
   <title><![CDATA[Tooltip in day view :   Yes but I can&amp;#039;t modify...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4538&amp;PID=16413&amp;title=tooltip-in-day-view#16413</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2162">celebre</a><br /><strong>Subject:</strong> 4538<br /><strong>Posted:</strong> 09 October 2006 at 9:59am<br /><br />Yes but I can't modify the CalendarControl Tooltip behavior in VBA when user move cursor over an event, right?<br><br>I'm a little confused... can I access somehow the ToolTip property of CalendarControl in VBA?<br><br>In the above code, Form.ControlTipText isn't the same than CalendarControl1.ToolTipText<br><br><font size="1"><i>Private Sub CalendarControl1_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal x As Long, ByVal y As Long)<br>&nbsp;&nbsp;&nbsp; Dim HitTest As CalendarHitTestInfo<br>&nbsp;&nbsp;&nbsp; Set HitTest = CalendarControl1.ActiveView.HitTest<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; Dim ctl As Control, i As Integer<br>&nbsp;<br>&nbsp;&nbsp;&nbsp; If (Not HitTest.ViewEvent Is Nothing) Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; For Each ctl In Me.Controls<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With ctl<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If .ControlType = acTextBox Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .ControlTipText = "&#091;" &amp; HitTest.ViewEvent.Event.ID &amp; "&#093; " &amp; HitTest.ViewEvent.Event.Subject<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Next ctl<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set ctl = Nothing<br>&nbsp;&nbsp;&nbsp; Else<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;  ...<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ctl.ControlTipText = ""<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;  ...<br>&nbsp;&nbsp;&nbsp; End If<br>End Sub</i></font><br><br>Thx for your fast answer.<br>]]>
   </description>
   <pubDate>Mon, 09 Oct 2006 09:59:15 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4538&amp;PID=16413&amp;title=tooltip-in-day-view#16413</guid>
  </item> 
  <item>
   <title><![CDATA[Tooltip in day view : ToolTipText property is provided...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4538&amp;PID=16411&amp;title=tooltip-in-day-view#16411</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 4538<br /><strong>Posted:</strong> 09 October 2006 at 8:43am<br /><br /><b>ToolTipText </b>property is provided by VB engine and it is not accessible in VBA. However, VBA does have its own ways to handle tooltips. For example, in Access you can use <b>ControlTipText </b>property.<br><br>--<br>WBR,<br>Serge<br>]]>
   </description>
   <pubDate>Mon, 09 Oct 2006 08:43:43 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4538&amp;PID=16411&amp;title=tooltip-in-day-view#16411</guid>
  </item> 
  <item>
   <title><![CDATA[Tooltip in day view : Is possible to use CalendarControl.TooltipText...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4538&amp;PID=16402&amp;title=tooltip-in-day-view#16402</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2162">celebre</a><br /><strong>Subject:</strong> 4538<br /><strong>Posted:</strong> 08 October 2006 at 7:41pm<br /><br />Is possible to use CalendarControl.TooltipText in VBA? <DIV>&nbsp;</DIV><DIV>I tried the following but I get an error in Access'03 "Object don't admit that property".</DIV><DIV>&nbsp;</DIV><DIV>CalendarControl1.TooltipText = ""</DIV><DIV>&nbsp;</DIV><DIV>Greetings</DIV>]]>
   </description>
   <pubDate>Sun, 08 Oct 2006 19:41:42 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4538&amp;PID=16402&amp;title=tooltip-in-day-view#16402</guid>
  </item> 
  <item>
   <title><![CDATA[Tooltip in day view : Actually for such purposes you...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4538&amp;PID=13998&amp;title=tooltip-in-day-view#13998</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 4538<br /><strong>Posted:</strong> 05 July 2006 at 2:55pm<br /><br />Actually for such purposes you can disable standard calendar tooltips and <br>show your own one with some text. <br>&nbsp;<br>See Custom Tooltips Example in calendar VB sample.&nbsp; <br><br>--<br>WBR,<br>Serge<br>]]>
   </description>
   <pubDate>Wed, 05 Jul 2006 14:55:49 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4538&amp;PID=13998&amp;title=tooltip-in-day-view#13998</guid>
  </item> 
  <item>
   <title><![CDATA[Tooltip in day view : Since in day view there is now...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4538&amp;PID=13987&amp;title=tooltip-in-day-view#13987</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1751">WaaZ</a><br /><strong>Subject:</strong> 4538<br /><strong>Posted:</strong> 04 July 2006 at 8:22pm<br /><br /><P>Since in day view there is now no&nbsp;way of knowing when an appointment time starts or&nbsp;ends except to either see how it fits into the time scale on the side or open the appointment, is there a way i can have tooltips working like you have them working in week and month view, so by moving my mouse over the appointment i can see when the start and end time&nbsp;and what the appointment contains etc. </P><P>I need this for day view, i know its already in week and month view. Again ideally it would be good to have this&nbsp;AND ALSO&nbsp;the ability to show start and end times for an appointment.</P><DIV>Im using 9.81 but if you told me this has been fixed in later realises then that would be great.</DIV><DIV>&nbsp;</DIV><DIV>Thanks</DIV><DIV></DIV>]]>
   </description>
   <pubDate>Tue, 04 Jul 2006 20:22:00 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4538&amp;PID=13987&amp;title=tooltip-in-day-view#13987</guid>
  </item> 
 </channel>
</rss>