<?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 : [SOLVED] Landscape not working (CreatePrintView)</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : [SOLVED] Landscape not working (CreatePrintView)]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 14 May 2026 22:27:11 +0000</pubDate>
  <lastBuildDate>Mon, 17 Jan 2011 15:20:17 +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=17354</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[[SOLVED] Landscape not working (CreatePrintView) : Hi, Thanks for reply. That could...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17354&amp;PID=62229&amp;title=solved-landscape-not-working-createprintview#62229</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 17354<br /><strong>Posted:</strong> 17 January 2011 at 3:20pm<br /><br /><P>Hi,</P><P>Thanks for reply. That could be an option too but I decided to add&nbsp;extra commandbars to PictureBox (with PrintPreview inside as well and&nbsp;using Dockingpanes). I added toolbar the toolbar and changed some properties&nbsp;for PrintPreview Toolbar. Just in&nbsp;case CJ implements the Execute/Update event, the only thing I have to do is copy/paste some code to get this fully functional.</P><DIV><U>If you don't use&nbsp;Dockingpanes this is an OK solution</U> <img src="http://forum.codejock.com/smileys/smiley2.gif" height="17" width="17" border="0" alt="Wink" title="Wink" />&nbsp;without having to position/size the solution&nbsp;I decided to use.</DIV><DIV>&nbsp;</DIV><DIV>btw. This post shows what a forum is about, different members with different solutions. We should do this more often <img src="http://forum.codejock.com/smileys/smiley2.gif" height="17" width="17" border="0" alt="Wink" title="Wink" /></DIV><DIV>&nbsp;</DIV><DIV>This is what I did: (<strong>note</strong>: <strong>PrintPreview</strong> &amp; <strong>CommandbarsExtra</strong> <U>inside</U> PictureBox &amp; <strong>DockingPanes</strong>)&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>Private Function CreatePrintPreviewToolbar()<BR>&nbsp;&nbsp;&nbsp; <FONT color=#006600>'Set same properties for both toolbars because I&nbsp;had to position new toolbar to top-left</FONT></DIV><DIV><FONT color=#006600>&nbsp;&nbsp;&nbsp; 'and right beneath new toolbar, the PrintPreview toolbar resides because it is positioned</FONT></DIV><DIV><FONT color=#006600>&nbsp;&nbsp;&nbsp; 'through ResizeClient event. </FONT></DIV><DIV><BR>&nbsp;&nbsp;&nbsp; With Me.PrintPreview<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .VisualTheme = xtpThemeNativeWinXP</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;With .Toolbar<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .ShowGripper = False<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .ContextMenuPresent = False<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Customizable = False<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .CustomizeDialogPresent = False<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .ShowExpandButton = False</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .EnableDocking xtpFlagStretched<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;End With<BR>&nbsp;&nbsp;&nbsp; End With<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; With Me.CommandBarsPrintPreviewExtra<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .DeleteAll<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .VisualTheme = xtpThemeNativeWinXP<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With .Add("Test", xtpBarTop)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With .Controls</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Add xtpControlCheckBox, 1000, "Landscape"</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; '<FONT color=#006600>.Add ........<BR></FONT>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .ShowGripper = False<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .ContextMenuPresent = False<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Customizable = False<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .CustomizeDialogPresent = False<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .ShowExpandButton = False</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .EnableDocking xtpFlagStretched<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<BR>&nbsp;&nbsp;&nbsp; End With<BR>&nbsp;&nbsp;&nbsp; <BR>End Function</DIV><DIV>&nbsp;</DIV><DIV>Private Sub CommandBarsPrintPreviewExtra_ResizeClient(ByVal Left As Long, ByVal Top As Long, ByVal Right As Long, ByVal Bottom As Long)<BR>&nbsp;&nbsp;&nbsp; Me.PrintPreview.Move Left, Top, Right - Left, Bottom - Top<BR>End Sub<BR></DIV><DIV>Output:</DIV><DIV><img src="http://forum.codejock.com/uploads/3701/PrintPreviewExtra.bmp" height="237" width="522" border="0" /></DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Mon, 17 Jan 2011 15:20:17 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17354&amp;PID=62229&amp;title=solved-landscape-not-working-createprintview#62229</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] Landscape not working (CreatePrintView) : Hi Aaron,   As there is no direct...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17354&amp;PID=62211&amp;title=solved-landscape-not-working-createprintview#62211</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2960">Xander75</a><br /><strong>Subject:</strong> 17354<br /><strong>Posted:</strong> 17 January 2011 at 4:59am<br /><br />Hi Aaron, <DIV>&nbsp;</DIV><DIV>As there is no direct way of catching the event you could add Custom Controls i.e. Combo, CheckBox etc. I have done this with a ComboBox and it works fine, this way you can add many controls to the toolbar and leave the Close event to close the PrintPreview.</DIV><DIV>&nbsp;</DIV><DIV>See below example for adding a ComboBox for printer orientation:</DIV><DIV>&nbsp;</DIV><DIV><table width="99%"><tr><td><pre class="BBcode"></DIV><DIV><FONT color=#000099>Private Sub</FONT> Combo1_Change()<BR>&nbsp;&nbsp;&nbsp; PrintPreview.Orientation = IIf(Combo1.Text = "Landscape", xtpOrientationLandscape, xtpOrientationPortrait)<BR><FONT color=#000099>End Sub</FONT>&nbsp;&nbsp;</DIV><DIV><FONT color=#000099>Private Sub</FONT> Combo1_Click()<BR>&nbsp;&nbsp;&nbsp; <FONT color=#000099>Call </FONT>Combo1_Change<BR><FONT color=#000099>End Sub</FONT>&nbsp;&nbsp;</DIV><DIV><FONT color=#000099>Private Sub</FONT> Form_Load()<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; <FONT color=#000099>Dim </FONT>Control <FONT color=#000099>As </FONT>XtremeCommandBars.CommandBarControl<BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp; <FONT color=#000099>With </FONT>Combo1<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .AddItem "Landscape"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .AddItem "Portrait"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Text = "Portrait"<BR>&nbsp;&nbsp;&nbsp; <FONT color=#000099>End With</FONT><BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp; <FONT color=#000099>Set </FONT>Control = CommandBars.CreateCommandBarControl("CXTPControlCustom")<BR>&nbsp;&nbsp;&nbsp; Control.Handle = Combo1.hWnd<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp; PrintPreview.Toolbar.Controls.AddControl Control<BR>&nbsp;&nbsp;&nbsp; <BR><FONT color=#000099>End </FONT><FONT color=#000099>Sub</FONT> </DIV><DIV></pre></td></tr></table></DIV>]]>
   </description>
   <pubDate>Mon, 17 Jan 2011 04:59:53 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17354&amp;PID=62211&amp;title=solved-landscape-not-working-createprintview#62211</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] Landscape not working (CreatePrintView) : Hi, Thanks for reply.  Too bad,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17354&amp;PID=62200&amp;title=solved-landscape-not-working-createprintview#62200</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 17354<br /><strong>Posted:</strong> 15 January 2011 at 3:23am<br /><br /><P>Hi,</P><P>Thanks for reply. </P><DIV></DIV>Too bad, there's no event you can catch. For now I removed 'close' button and added seperator and checkbox (only to toggle 'preview' Landscape and Portrait) with same ID as 'close' button and I'm able to&nbsp;use Close event to add&nbsp;necessary code.&nbsp; <DIV>Well, at least you are able to access the toolbar and&nbsp;set new captions and tooltips. Would be nice though if we could add some more...&nbsp;CJ??? <img src="http://forum.codejock.com/smileys/smiley2.gif" height="17" width="17" border="0" alt="Wink" title="Wink" /></DIV><DIV>&nbsp;</DIV><DIV>Thanks</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Sat, 15 Jan 2011 03:23:48 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17354&amp;PID=62200&amp;title=solved-landscape-not-working-createprintview#62200</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] Landscape not working (CreatePrintView) : Hi Aaron,In fact I think it&amp;#039;s...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17354&amp;PID=62196&amp;title=solved-landscape-not-working-createprintview#62196</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4049">Lodep59</a><br /><strong>Subject:</strong> 17354<br /><strong>Posted:</strong> 14 January 2011 at 8:36am<br /><br />Hi Aaron,<div><br></div><div>In fact I think it's impossible if you use the print preview toolbar because you don't have access to the "execute" method of the toolbar. So you can add controls but there's no way to catch the click event.</div><div><br></div><div>In my case, I customize the labels of the printpreview commandbar controls and I've added a second command bar in the bottom of the printpreview wich is used as usual.</div><div><br></div><div>The printpreview control is very helpfull because you can place it on a form and add others controls. The printpreview function of the report control is easy to use but you can't customize the controls shown on the form.</div><div><br></div><div>Hope this help.</div>]]>
   </description>
   <pubDate>Fri, 14 Jan 2011 08:36:13 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17354&amp;PID=62196&amp;title=solved-landscape-not-working-createprintview#62196</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] Landscape not working (CreatePrintView) :   Lodep59 wrote:  Hi,  The...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17354&amp;PID=62190&amp;title=solved-landscape-not-working-createprintview#62190</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 17354<br /><strong>Posted:</strong> 13 January 2011 at 11:28am<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by Lodep59" alt="Originally posted by Lodep59" style="vertical-align: text-bottom;" /> <strong>Lodep59 wrote:</strong><br /><br /><DIV><BR></DIV><DIV><FONT color=#999999>Hi,</FONT></DIV><DIV><FONT color=#999999><BR></FONT></DIV><DIV><FONT color=#999999>The last version ! 13.4.1. (</FONT><a href="http://www.codejock.com/corporate/whatsnew.asp#09202010" target="_blank"><FONT color=#999999>http://www.codejock.com/corporate/whatsnew.asp#09202010</FONT></A><FONT color=#999999>).</FONT></DIV><DIV><FONT color=#999999>As I said, it works fine with 13.4.0.</FONT></DIV><DIV><FONT color=#999999><BR></FONT></DIV><DIV><FONT color=#999999>I use PrintPreview with ReportControl because :</FONT></DIV><DIV><FONT color=#999999><BR></FONT></DIV><DIV><FONT color=#999999>1) The look of print preview is better (command bars VS buttons)</FONT></DIV><DIV><FONT color=#999999>2) It's easy to change the captions of the buttons in printpreview (you just have to get the CommandBar object and use it)</FONT></DIV><DIV>3) I need to customize the available's actions when the printpreview is shown. For Example, on my print preview form I've added a checkbox in the commandbar to switch between "portrait" and "Landscape" mode.</DIV><DIV><BR></DIV><DIV><FONT color=#999999>Anyway, thank you for your replies, if CJ could do the same...</FONT></DIV><DIV><BR></DIV><DIV><BR></DIV></td></tr></table> <DIV>&nbsp;</DIV><DIV>Hi,</DIV><DIV>&nbsp;</DIV><DIV>I need to add&nbsp;some functionality too... Adding buttons isn't the problem but how&nbsp;to catch click event for the newly added button? I tried a lot but didn't succeed. Can I ask you how you did this?</DIV><DIV>&nbsp;</DIV><DIV>Thanks</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Thu, 13 Jan 2011 11:28:29 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17354&amp;PID=62190&amp;title=solved-landscape-not-working-createprintview#62190</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] Landscape not working (CreatePrintView) : What is sad is that it does not...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17354&amp;PID=60683&amp;title=solved-landscape-not-working-createprintview#60683</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4049">Lodep59</a><br /><strong>Subject:</strong> 17354<br /><strong>Posted:</strong> 04 October 2010 at 2:40pm<br /><br />What is sad is that it does not indicate that the property is used in place of the one of the report control when you use them together !<div><br></div><div>Maybe the printpreview could use the report control property on initialize ?</div><div><br></div><div>But this is not important, now it works.</div><div><br></div><div>Thanks for your help.</div>]]>
   </description>
   <pubDate>Mon, 04 Oct 2010 14:40:08 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17354&amp;PID=60683&amp;title=solved-landscape-not-working-createprintview#60683</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] Landscape not working (CreatePrintView) : ok, Great.There is note about...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17354&amp;PID=60680&amp;title=solved-landscape-not-working-createprintview#60680</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 17354<br /><strong>Posted:</strong> 04 October 2010 at 1:47pm<br /><br />ok, Great.<div><br></div><div>There is note about Orientation in release notes. &nbsp; maybe only not obvious what to do with it :)</div><div><br></div><div><a href="http://www.codejock.com/products/releasenotes/release_notes.asp" target="_blank">http://www.codejock.com/products/releasenotes/release_notes.asp</a></div><div><span ="Apple-style-span" style="font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif; line-height: normal; font-size: 11px; border-collapse: collapse; -webkit-border-horiz&#111;ntal-spacing: 2px; -webkit-border-vertical-spacing: 2px; ">PrintPreview.Orientation property added</span></div>]]>
   </description>
   <pubDate>Mon, 04 Oct 2010 13:47:48 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17354&amp;PID=60680&amp;title=solved-landscape-not-working-createprintview#60680</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] Landscape not working (CreatePrintView) :    oleg wrote: Hi,To allow...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17354&amp;PID=60675&amp;title=solved-landscape-not-working-createprintview#60675</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4049">Lodep59</a><br /><strong>Subject:</strong> 17354<br /><strong>Posted:</strong> 04 October 2010 at 12:25pm<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by oleg" alt="Originally posted by oleg" style="vertical-align: text-bottom;" /> <strong>oleg wrote:</strong><br /><br />Hi,<div><br></div><div>To allow everything to print with landscape mode, PrintPreview control now just have own&nbsp;Orientation&nbsp;mode.</div><div>Please use it instead:</div><div><br></div><div>Me.PrintPreview1.Orientation = xtpOrientationLandscape</div></td></tr></table><div><br></div><div>Thank you Oleg.</div><div>Seems that it works.</div><div><br></div><div>Don't you think that such kind of change should be highlighted in change log !?</div><div>When an update need your customers to change their code it's the least to do !&nbsp;</div>]]>
   </description>
   <pubDate>Mon, 04 Oct 2010 12:25:44 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17354&amp;PID=60675&amp;title=solved-landscape-not-working-createprintview#60675</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] Landscape not working (CreatePrintView) :  Hi,To allow everything to print...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17354&amp;PID=60669&amp;title=solved-landscape-not-working-createprintview#60669</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 17354<br /><strong>Posted:</strong> 04 October 2010 at 8:30am<br /><br />Hi,<div><br></div><div>To allow everything to print with landscape mode, PrintPreview control now just have own&nbsp;Orientation&nbsp;mode.</div><div>Please use it instead:</div><div><br></div><div>Me.PrintPreview1.Orientation = xtpOrientationLandscape</div>]]>
   </description>
   <pubDate>Mon, 04 Oct 2010 08:30:50 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17354&amp;PID=60669&amp;title=solved-landscape-not-working-createprintview#60669</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] Landscape not working (CreatePrintView) : For the moment I have not heard...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17354&amp;PID=60663&amp;title=solved-landscape-not-working-createprintview#60663</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4049">Lodep59</a><br /><strong>Subject:</strong> 17354<br /><strong>Posted:</strong> 04 October 2010 at 4:17am<br /><br />For the moment I have not heard of the support on this ...<br>I will return to 13.4.0 and I'll live with the other bugs, a little less serious ...<br>To 14.0, consider making the tests a bit more advanced or, if you do not have time, thank you to provide your users a beta version. This kind of bug is very destabilizing.The quality of your components and our software depends on it.]]>
   </description>
   <pubDate>Mon, 04 Oct 2010 04:17:16 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17354&amp;PID=60663&amp;title=solved-landscape-not-working-createprintview#60663</guid>
  </item> 
 </channel>
</rss>