<?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 : Hide days in month view print</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Calendar : Hide days in month view print]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 28 May 2026 14:04:02 +0000</pubDate>
  <lastBuildDate>Mon, 01 Feb 2010 12:17: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=16092</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[Hide days in month view print : Thanks - again, this was only...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16092&amp;PID=56510&amp;title=hide-days-in-month-view-print#56510</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5848">crichey</a><br /><strong>Subject:</strong> 16092<br /><strong>Posted:</strong> 01 February 2010 at 12:17pm<br /><br />Thanks - again, this was only a response to part of my question and had already been answered before.&nbsp; <br><br>]]>
   </description>
   <pubDate>Mon, 01 Feb 2010 12:17:04 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16092&amp;PID=56510&amp;title=hide-days-in-month-view-print#56510</guid>
  </item> 
  <item>
   <title><![CDATA[Hide days in month view print : e.g. Private Sub mnuPrintPreview_Click()Dim...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16092&amp;PID=56472&amp;title=hide-days-in-month-view-print#56472</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 16092<br /><strong>Posted:</strong> 29 January 2010 at 5:54pm<br /><br />e.g.<DIV>Private Sub mnuPrintPreview_Click()<BR>Dim dt As Date<BR>Dim nt As Integer<BR>Dim sName As String<BR>&nbsp;&nbsp;&nbsp; nt = CalendarControl.ActiveView.DaysCount<BR>&nbsp;&nbsp;&nbsp; dt = CalendarControl.ActiveView.Days(nt / 2).Date<BR>&nbsp;&nbsp;&nbsp; sName = Format(dt, "yyyy - mmmm")<BR>&nbsp;&nbsp;&nbsp; CalendarControl.PrintPreviewOptions.Title = "Calendar Control VB 6.0 Sample application"<BR>&nbsp;&nbsp;&nbsp; CalendarControl.PrintOptions.Header.TextCenter = sName<BR>&nbsp;&nbsp;&nbsp; CalendarControl.PrintPreview False<BR>End Sub<BR></DIV>]]>
   </description>
   <pubDate>Fri, 29 Jan 2010 17:54:44 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16092&amp;PID=56472&amp;title=hide-days-in-month-view-print#56472</guid>
  </item> 
  <item>
   <title><![CDATA[Hide days in month view print : I&amp;#039;m not sure that I explained...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16092&amp;PID=56470&amp;title=hide-days-in-month-view-print#56470</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5848">crichey</a><br /><strong>Subject:</strong> 16092<br /><strong>Posted:</strong> 29 January 2010 at 3:50pm<br /><br />I'm not sure that I explained my original question properly.&nbsp; It sounds like the beta allows the mini calendars to be turned off, which is good and part of my original question.&nbsp; My main issue is turning off the printing of surrounding days from previous and next month when printing a month view.<br><br>For example, in printing January, 2010, it looks like this currently:<br><br><font face="Courier New, Courier, mono">27&nbsp; 28&nbsp; 29&nbsp; 30&nbsp; 31&nbsp;&nbsp; 1&nbsp;&nbsp; 2<br>&nbsp;3&nbsp;&nbsp; 4&nbsp;&nbsp; 5&nbsp;&nbsp; 6&nbsp;&nbsp; 7&nbsp;&nbsp; 8&nbsp;&nbsp; 9<br>10&nbsp; 11&nbsp; 12&nbsp; 13&nbsp; 14&nbsp; 15&nbsp; 16<br>17&nbsp; 18&nbsp; 19&nbsp; 20&nbsp; 21&nbsp; 22&nbsp; 23<br>24&nbsp; 25&nbsp; 26&nbsp; 27&nbsp; 28&nbsp; 29&nbsp; 30<br>31&nbsp;&nbsp; 1&nbsp;&nbsp; 2&nbsp;&nbsp; 3&nbsp;&nbsp; 4&nbsp;&nbsp; 5&nbsp;&nbsp; 6<br><br>I would like it to look like this:<br><br></font><font face="Courier New, Courier, mono">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1&nbsp;&nbsp; 2<br>&nbsp;3&nbsp;&nbsp; 4&nbsp;&nbsp; 5&nbsp;&nbsp; 6&nbsp;&nbsp; 7&nbsp;&nbsp; 8&nbsp;&nbsp; 9<br>10&nbsp; 11&nbsp; 12&nbsp; 13&nbsp; 14&nbsp; 15&nbsp; 16<br>17&nbsp; 18&nbsp; 19&nbsp; 20&nbsp; 21&nbsp; 22&nbsp; 23<br>24&nbsp; 25&nbsp; 26&nbsp; 27&nbsp; 28&nbsp; 29&nbsp; 30<br>31<br><br><br></font>I'm referring to the main calendar, not the mini calendar here.<br><br>Thanks!<br><br>]]>
   </description>
   <pubDate>Fri, 29 Jan 2010 15:50:21 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16092&amp;PID=56470&amp;title=hide-days-in-month-view-print#56470</guid>
  </item> 
  <item>
   <title><![CDATA[Hide days in month view print : You can use smth like  Calend...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16092&amp;PID=56466&amp;title=hide-days-in-month-view-print#56466</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 16092<br /><strong>Posted:</strong> 29 January 2010 at 2:53pm<br /><br />You can use smth like<DIV>&nbsp;&nbsp;&nbsp; CalendarControl.PrintOptions.Header.TextCenter = "My Title String"<BR>&nbsp;&nbsp;&nbsp; CalendarControl.PrintOptions.PrintDateHeader = False<BR>and in your print / printpreview handler use any string to title e.g. Month Name</DIV>]]>
   </description>
   <pubDate>Fri, 29 Jan 2010 14:53:13 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16092&amp;PID=56466&amp;title=hide-days-in-month-view-print#56466</guid>
  </item> 
  <item>
   <title><![CDATA[Hide days in month view print : Yes, you can do it now - https...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16092&amp;PID=56465&amp;title=hide-days-in-month-view-print#56465</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 16092<br /><strong>Posted:</strong> 29 January 2010 at 2:44pm<br /><br />Yes, you can do it now - <a href="https://forum.codejock.com/uploads/BetaOCX/CalendarBeta14.rar" target="_blank">https://forum.codejock.com/uploads/BetaOCX/CalendarBeta14.rar</A><DIV>CalendarControl.PrintOptions.ThreeSmallCal = False</DIV>]]>
   </description>
   <pubDate>Fri, 29 Jan 2010 14:44:23 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16092&amp;PID=56465&amp;title=hide-days-in-month-view-print#56465</guid>
  </item> 
  <item>
   <title><![CDATA[Hide days in month view print : Is it possible to hide days for...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16092&amp;PID=56396&amp;title=hide-days-in-month-view-print#56396</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5848">crichey</a><br /><strong>Subject:</strong> 16092<br /><strong>Posted:</strong> 27 January 2010 at 11:29am<br /><br />Is it possible to hide days for the previous and subsequent months in the calendar print?&nbsp; When we print, for example, the month of January - we only want to see dates in January in the month view, not dates from December and February for partial weeks.<br><br>Also - is it possible to show only the Month in the header without the mini calendar?<br>]]>
   </description>
   <pubDate>Wed, 27 Jan 2010 11:29:02 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16092&amp;PID=56396&amp;title=hide-days-in-month-view-print#56396</guid>
  </item> 
 </channel>
</rss>