<?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 : Calendar Tooltip Text Mystery</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Calendar : Calendar Tooltip Text Mystery]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 28 May 2026 09:27:26 +0000</pubDate>
  <lastBuildDate>Fri, 25 Mar 2011 09:24:04 +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=18029</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[Calendar Tooltip Text Mystery : Actually this refer to the CanlendarControl.ToolTipText...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=18029&amp;PID=63558&amp;title=calendar-tooltip-text-mystery#63558</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 18029<br /><strong>Posted:</strong> 25 March 2011 at 9:24am<br /><br />Actually this refer to the CanlendarControl.ToolTipText property.&nbsp; It is language specific too, in VB6 the Calendar inherits this property, in C# it will not.&nbsp; ToolTipText is a standard control's property, provided by VB framework.<br><br>Use methods CalendarControl.EnableToolTips to disable built-in Calendartooltips, then catch MouseMove and using methodCalendarControl.ActiveView.HitTest determine the current active itemswhere cursor is currently placed. Then show some custom tooltip withthis information displayed.<br><br>This idea is show in Calendar Visual Basic sample. Please look belowfor an implementation of MouseMove method -- it is pretty simple:<br>Private Sub CalendarControl_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)<br>&nbsp;&nbsp;Dim HitTest As CalendarHitTestInfo<br>&nbsp;&nbsp;Set HitTest = CalendarControl.ActiveView.HitTest<br>&nbsp;&nbsp;<br>&nbsp;&nbsp;If (Not HitTest.ViewEvent Is Nothing) Then<br>&nbsp;&nbsp;&nbsp; Debug.Print "MouseMove. HitTest = "; HitTest.ViewEvent.Event.Subject<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; If ToolTips_Mode = 1 Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CalendarControl.ToolTipText = "&#091;" &amp; HitTest.ViewEvent.Event.Id &amp; "&#093;&nbsp;" &amp; HitTest.ViewEvent.Event.Subject<br>&nbsp;&nbsp;&nbsp; Else<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CalendarControl.ToolTipText = ""<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Me.Refresh<br>&nbsp;&nbsp;&nbsp; End If<br>&nbsp;&nbsp;Else<br>&nbsp;&nbsp;&nbsp;&nbsp;CalendarControl.ToolTipText = ""<br>&nbsp;&nbsp;&nbsp;&nbsp;Me.Refresh<br>&nbsp;&nbsp;End If<br>End Sub<br>]]>
   </description>
   <pubDate>Fri, 25 Mar 2011 09:24:04 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=18029&amp;PID=63558&amp;title=calendar-tooltip-text-mystery#63558</guid>
  </item> 
  <item>
   <title><![CDATA[Calendar Tooltip Text Mystery : Hi All,  I am trying to display...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=18029&amp;PID=63212&amp;title=calendar-tooltip-text-mystery#63212</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6040">cannones</a><br /><strong>Subject:</strong> 18029<br /><strong>Posted:</strong> 09 March 2011 at 5:10pm<br /><br />Hi All,<br><br>I am trying to display a custom tooltip when the mouse hovers an event. I have the code working but in the codejock docs it mentions an undocumented property called TooltipText which is inherited ??<br><br>I also checked the generated package file and there is no sign of the property .. <br><br>Those that have the codejock calendar control help can see what I am referring to by looking up the method EnableToolTips.<br><br>&nbsp;Any Ideas How I need to reference this ..<br><br>Sam				]]>
   </description>
   <pubDate>Wed, 09 Mar 2011 17:10:42 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=18029&amp;PID=63212&amp;title=calendar-tooltip-text-mystery#63212</guid>
  </item> 
 </channel>
</rss>