<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: Custom Paper Size &amp; Orientation Problem in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957261#M1874841</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you call PrintToPrinter, the Landcape property is changed to true when width &amp;gt; height.  I have an employee that followed the code through in one of the .NET decompilers and he says:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The u201CQueryPageSettingsEventHandleru201D (among others) was added after CR11.5, and it has some code that basically looks for a width &amp;gt; height, and sets the orientation to Landscape. The method u201CQueryPageSettingsu201D is what causes all the headache.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;public static void QueryPageSettings(QueryPageSettingsEventArgs e, PageObject page)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;  if (page == null)&lt;/P&gt;&lt;P&gt;  {&lt;/P&gt;&lt;P&gt;     e.Cancel = true;&lt;/P&gt;&lt;P&gt;  }&lt;/P&gt;&lt;P&gt;  else&lt;/P&gt;&lt;P&gt;  {&lt;/P&gt;&lt;P&gt;     e.PageSettings.Landscape = page.PageOrientation == PaperOrientation.Landscape;&lt;/P&gt;&lt;P&gt;  }&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oddly enough the method is called from a u201CPrintingHelperu201D class. Iu2019m sure we could think of another name J.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Jun 2010 18:12:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-06-30T18:12:33Z</dc:date>
    <item>
      <title>Custom Paper Size &amp; Orientation Problem</title>
      <link>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaq-p/4957211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to print a receipt using Crystal Report 2008 (Service Pack 1). Receipt size is 8.5 x 5.5. I checked +Dissociate Formatting Page Size and Printer Paper Size' and set the Horizontal and Vertical sizes. But the problem is, Orientation is automatically set to &lt;EM&gt;Landscape&lt;/EM&gt;. But I want to set it to &lt;EM&gt;Portrait&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I noticed that even if you selected predefine paper size with Width is greater than Height, IDE automatically set it to &lt;EM&gt;Landscape&lt;/EM&gt;. If we change &lt;EM&gt;Landscape&lt;/EM&gt;  to &lt;EM&gt;Portrait&lt;/EM&gt; then the Width and Height will be swapped.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Programally I set the orientation like this :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;rps.PrintOptions.PaperOrientation = PaperOrientation.Portrait&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;. But it didn't solve the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please tell he how to print with paper size 8.5 x 5.5 as portrait?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Dec 2008 07:51:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaq-p/4957211</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-29T07:51:18Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Paper Size &amp; Orientation Problem</title>
      <link>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957212#M1874792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this code - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
boReportDocument.Load(Server.MapPath("CrystalReport.rpt")); 
        PrintOptions boPrintOptions = boReportDocument.PrintOptions; 
 
        // The paper size used for this report is  '14x7'.
 
      System.Drawing.Printing.PrinterSettings oPrinterSettings = new       System.Drawing.Printing.PrinterSettings(); 
        oPrinterSettings.PrinterName = "     "; 
        
        foreach (System.Drawing.Printing.PaperSize oPaperSize in oPrinterSettings.PaperSizes) 
        { 
            if ("14x7" == oPaperSize.PaperName) 
            {                
                boPrintOptions.PaperSize = (CrystalDecisions.Shared.PaperSize) oPaperSize.RawKind; 
                break; 
         } 
            
        } 
        CrystalReportViewer1.ReportSource = boReportDocument;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help!!&lt;/P&gt;&lt;P&gt;Regards!!&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Dec 2008 13:25:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957212#M1874792</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-29T13:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Paper Size &amp; Orientation Problem</title>
      <link>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957213#M1874793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for delay response. It is because I was not well during last week. Thanks for the comments too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it didn't work. Without giving custom paper size, I tried with the paper size &lt;STRONG&gt;PaperLedger&lt;/STRONG&gt; which is in &lt;STRONG&gt;PaperSize Enumeration&lt;/STRONG&gt;. It's size is &lt;EM&gt;17- by 11-inches.&lt;/EM&gt;. Width is greater than the height. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the paper width is greater than the height CR will always print it as landscape. Even if we set orientation as Portrait dynamically (in program)  , still it prints as landscape.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this a CR bug?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Jan 2009 07:52:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957213#M1874793</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-04T07:52:41Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Paper Size &amp; Orientation Problem</title>
      <link>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957214#M1874794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See if this helps :&lt;/P&gt;&lt;P&gt;[http://msdn.microsoft.com/en-us/library/system.drawing.printing.papersize.aspx]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this, Open up the report in Crystal Designer and select Page setup and check off Dissociate paper...&lt;/P&gt;&lt;P&gt;With SP1 installed you can check that option off.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shweta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jan 2009 01:17:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957214#M1874794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-05T01:17:19Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Paper Size &amp; Orientation Problem</title>
      <link>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957215#M1874795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shweta,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your comments. I worked with &lt;STRONG&gt;Dissociate paper...&lt;/STRONG&gt; option. But it didn't solve the problem :(.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have installed Crystal Report 2008 with SP 1. Problem is even in CR design view, when we change the Page Size, if width is greater than the height, it will automatically select &lt;STRONG&gt;Landscape&lt;/STRONG&gt;  option. If we set &lt;STRONG&gt;orientation&lt;/STRONG&gt; to &lt;STRONG&gt;Portrait&lt;/STRONG&gt; again, then the Height and Width will be swap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So still there is no way to print a Paper which is having the paper Width is greater than the paper (Eg. Height  as Portrait (Eg. 8.5 x 5.5 as Portrait).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jan 2009 12:37:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957215#M1874795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-05T12:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Paper Size &amp; Orientation Problem</title>
      <link>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957216#M1874796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Work around is to set the length larger than the width. 8.5 x 8.5 so CR does not auto rotate. Printing should be ignore the custom paper size and page break as required. We are workign with R&amp;amp;D to see how or why we auto rotate.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 18:41:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957216#M1874796</guid>
      <dc:creator>former_member11696</dc:creator>
      <dc:date>2009-01-27T18:41:22Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Paper Size &amp; Orientation Problem</title>
      <link>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957217#M1874797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Still I didn't get the valid answer. Problem is still remaining&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2009 18:13:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957217#M1874797</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-01T18:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Paper Size &amp; Orientation Problem</title>
      <link>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957218#M1874798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wait for the next Service Pack or purchase a case on line to get a dedicated Support Engineer working on the issue&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2009 21:38:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957218#M1874798</guid>
      <dc:creator>former_member11696</dc:creator>
      <dc:date>2009-05-14T21:38:07Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Paper Size &amp; Orientation Problem</title>
      <link>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957219#M1874799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Don&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the same problem as the other writers but this workaround is not viable since I need to set the Orientation and size for a label and if I change the Dimentions as suggested, it will not print out correctly on each label.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Robert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Aug 2009 19:24:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957219#M1874799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-13T19:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Paper Size &amp; Orientation Problem</title>
      <link>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957220#M1874800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Don&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you explain how to get "dedicated support". I already have support from our Sap partner but they could not resolve this issue, so I would like to pay for a solution but I have my doubts that this can be resolved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you Robert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Aug 2009 19:28:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957220#M1874800</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-13T19:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Paper Size &amp; Orientation Problem</title>
      <link>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957221#M1874801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I have the same problem.  I have tried everything I can come up with but no luck.  I'm trying to print a 3x1 label and it won't turn landscape no matter what I do.  I am uning ReportDocument with 12.1 SP2.  My old software works fine with the RDC control.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2009 16:54:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957221#M1874801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-21T16:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Paper Size &amp; Orientation Problem</title>
      <link>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957222#M1874802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We have also had this problem for over a year, tried everyones' suggestions etc. but it is written into the crystal reports program to do this and there is no doubt no fix for the problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2009 17:39:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957222#M1874802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-21T17:39:45Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Paper Size &amp; Orientation Problem</title>
      <link>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957223#M1874803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any scheduled fix to solve this issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When our customers have custom paper sizes that are more widht than height, and they have matrix printers, we are installing CR XI, that works fine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Mar 2010 15:40:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957223#M1874803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-04T15:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Paper Size &amp; Orientation Problem</title>
      <link>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957224#M1874804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As long as you are using CR 2008, with [SP2|https://smpdl.sap-ag.de/~sapidp/012002523100009038092009E/cr2008win_sp2.exe]&lt;/P&gt;&lt;P&gt; and [fp2.4|https://smpdl.sap-ag.de/~sapidp/012002523100001024152010E/cr2008_fp24.zip] applied, the solution in [this|&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1618748"&gt;&lt;/A&gt;; thread should work for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ludek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Mar 2010 20:10:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957224#M1874804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-04T20:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Paper Size &amp; Orientation Problem</title>
      <link>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957225#M1874805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ludek,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above mentioned technique worked for me. &lt;/P&gt;&lt;P&gt;In my case i had to set the print settings in order to print shipping labels from dymo label printer. &lt;/P&gt;&lt;P&gt;Also thanks to amit singh for coming up with this solution. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Mar 2010 21:42:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957225#M1874805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-04T21:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Paper Size &amp; Orientation Problem</title>
      <link>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957226#M1874806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So does FP4 allow us to print Portrait orientation on labels that have WIDTH &amp;gt; HEIGHT?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Mar 2010 15:28:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957226#M1874806</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-05T15:28:39Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Paper Size &amp; Orientation Problem</title>
      <link>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957227#M1874807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;should. if not let us know - as long as hte printer driver supports it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ludek&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Ludek Uher on Mar 5, 2010 9:33 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Mar 2010 17:32:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957227#M1874807</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-05T17:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Paper Size &amp; Orientation Problem</title>
      <link>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957228#M1874808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This solution doesn't work for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a format with 20 cm width and 10 cm height, that shoud be printed in a dotmatrix printer.&lt;/P&gt;&lt;P&gt;In the page options for the report I have unchecked " Dissociate Page Size And Printer Paper Size" and I have indicated the PAPERNAME corresponding to the custom paper size mentioned above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In VB.NET&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Dim FormID As Integer = printer.IndiceTamañoPapel(wRS.Fields.Item("PAPERSIZE").Value, gPRINTERNAME)
 If FormID &amp;gt; 0 Then
        gREPORT.PrintOptions.DissociatePageSizeAndPrinterPaperSize = True
        gREPORT.PrintOptions.PaperOrientation = PaperOrientation.Portrait
        gREPORT.PrintOptions.PaperSize = CType(FormID, CrystalDecisions.Shared.PaperSize)
End If

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried with many options in Paperorientation (Default, portrait and landscape)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Mar 2010 18:08:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957228#M1874808</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-05T18:08:43Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Paper Size &amp; Orientation Problem</title>
      <link>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957229#M1874809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make sure that dot matrix printer is Unicode compliant. Most dot matrix printers are to and CR does not work with non Unicode compliant printers. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ludek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Mar 2010 21:57:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957229#M1874809</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-05T21:57:02Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Paper Size &amp; Orientation Problem</title>
      <link>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957230#M1874810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, I've installed FP 2.4 now and it still doesn't work.  It's easy to test.  Preview a report that has width &amp;gt; height.  The Crystal preview window displays the report perfectly but when you hit the print button, it turns sideways.  THIS NEEDS TO BE FIXED,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Mar 2010 21:11:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/custom-paper-size-orientation-problem/qaa-p/4957230#M1874810</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-10T21:11:23Z</dc:date>
    </item>
  </channel>
</rss>

