<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>FastReport 2.xx VCL — FastReport Forum</title>
        <link>https://forum.fast-report.com/en/</link>
        <pubDate>Thu, 14 May 2026 17:06:18 +0000</pubDate>
        <language>en</language>
            <description>FastReport 2.xx VCL — FastReport Forum</description>
    <atom:link href="https://forum.fast-report.com/en/categories/fastreport-2-xx-vcl/feed.rss" rel="self" type="application/rss+xml"/>
    <item>
        <title>Setting margins at runtime</title>
        <link>https://forum.fast-report.com/en/discussion/1029/setting-margins-at-runtime</link>
        <pubDate>Tue, 24 Aug 2004 17:08:21 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>Fulcrum</dc:creator>
        <guid isPermaLink="false">1029@/en/discussions</guid>
        <description><![CDATA[Hi,<br />
<br />
I have played with the labels demo file and I am getting the hang of everything.<br />
<br />
I can adjust the number of columns and everything is working there.<br />
<br />
My problem is setting the top margin.  In the report designer I switched it to accept MM instead of pixels for all the measurements.  At runtime in the PageHeaderBand OBP event I am setting the height of the band to equal a value passed in.  That only sort of works.<br />
<br />
It happily sets the top margin, but it seems to set it in pixels, not MM.<br />
<br />
<b>Is there a function to use to convert a MM value passed in as a variable into a pixel value?</b><br />
<br />
The code I am currently using is this:
<pre><code>PageHeader1.Height := MyTopMargin;
</code></pre>
<br />
If I pass in 50 it leaves about 20mm, if I pass in 100 it leaves about 40mm.  That is what makes me think that it is ignoring my chosen value type and reverting to pixels.<br />
<br />
Any help on this would be appreciated.]]>
        </description>
    </item>
    <item>
        <title>Hiding duplicate subtotals</title>
        <link>https://forum.fast-report.com/en/discussion/17747/hiding-duplicate-subtotals</link>
        <pubDate>Fri, 07 Apr 2023 14:05:34 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>DRPhillips</dc:creator>
        <guid isPermaLink="false">17747@/en/discussions</guid>
        <description><![CDATA[<p>In my reports, I have a groupheader hierarchy of four layers with corresponding groupfooters. Generally, this works very well for my users. However, some of my users like using those headers as descriptive headers. The problem this creates is it adds duplicate subtotals of the same amount. I need to hide those matching subtotals. I have added coding below of what I have so far. Unfortunately, with my current coding, if the statement is true in one part of the report, the respective groupfooter is removed everywhere in the report. I was hoping someone could help me understand what I need coding-wise to have it show only the higher on the hierarchy groupfooter when two subtotals (memos) in different groupfooters match. Thanks for any help!</p><p>Memo15 is subtotal in another groupfooter, and memo38 is the subtotal in Groupfooter5. Memo31 is a descriptive memo for the subtotal.</p><p>Additionally, coding is not my specialty; I have almost no training in Delphi coding.</p><p>procedure GroupFooter5OnBeforePrint(Sender: TfrxComponent);</p><p>begin&nbsp;&nbsp;&nbsp;</p><p>&nbsp;&nbsp;if VarToStr(&lt;EstData.Memo15&gt;) = VarToStr(&lt;EstData.Memo38&gt;) then</p><p>&nbsp;&nbsp;begin</p><p>&nbsp;&nbsp;&nbsp;&nbsp;GroupFooter5.Visible := False;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>&nbsp;&nbsp;end&nbsp;</p><p>&nbsp;&nbsp;else</p><p>&nbsp;&nbsp;begin</p><p>&nbsp;&nbsp;&nbsp;&nbsp;if VarToStr(&lt;EstData.&quot;Location&quot;&gt;) = &#39;&#39; then</p><p>&nbsp;&nbsp;&nbsp;&nbsp;begin</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;GroupFooter5.Visible := False;&nbsp;&nbsp;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Memo31.Visible := False;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;end&nbsp;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;else</p><p>&nbsp;&nbsp;&nbsp;&nbsp;begin</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;GroupFooter5.Visible := True;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Memo31.Visible := True;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;end;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>&nbsp;&nbsp;end;&nbsp;&nbsp;&nbsp;</p><p>end;</p>]]>
        </description>
    </item>
    <item>
        <title>Report Summary problem</title>
        <link>https://forum.fast-report.com/en/discussion/1605/report-summary-problem</link>
        <pubDate>Thu, 09 Dec 2004 13:01:08 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>svilen333</dc:creator>
        <guid isPermaLink="false">1605@/en/discussions</guid>
        <description><![CDATA[ Hi everybody,<br />
<br />
I am using FreeReports 2.32. My report have these bands:
<hr />
ReportTitle<br />
<br />
MasterHeader1<br />
MasterData1, [Field1]<br />
MasterFooter1, [SumField1]<br />
<br />
MasterHeader2<br />
MasterData2, [Field2]<br />
MasterFooter2, [SumField2]<br />
<br />
ReportSummary, [SummaryField1]
<hr />
<br />
MasterData1, [Field1] means that I have MasterData band with one field named Field1.<br />
So, I have correct calculated sum in every footer i.e. SumField1 gives me the right sum of all Field1. I need my SummaryField1 to calculate [SumField1] - [SumField2]. The strange thing is that when I place this expression in the SummaryField1 this calculates 0. After some experiments I have noticed that when I put in the expression of the SummaryField1 one of the SumFields, this gives me the sum of these two fields, so thats why I have zero result from the subtraction.<br />
I will apreciate if someone can give me an idea how to fix this.<br />
Thanks in advice.]]>
        </description>
    </item>
    <item>
        <title>Large column width in DBCrossView</title>
        <link>https://forum.fast-report.com/en/discussion/17581/large-column-width-in-dbcrossview</link>
        <pubDate>Tue, 04 Oct 2022 12:52:58 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>sthruska</dc:creator>
        <guid isPermaLink="false">17581@/en/discussions</guid>
        <description><![CDATA[<p>I have two builds and both have the same problem. The width of the last column does not correspond to reality. It&#39;s too big.</p><p>I can&#39;t do anything about it.</p><div><div>
    <div>
        <a href="https://forum.fast-report.com/en/uploads/551/AG4FH9GK5SGM.png" rel="nofollow noopener" target="_blank">
            <img src="https://forum.fast-report.com/en/uploads/551/AG4FH9GK5SGM.png" alt="image" />
        </a>
    </div>
</div></div><div><div>
    <div>
        <a href="https://forum.fast-report.com/en/uploads/063/BQFK111CHX1Z.png" rel="nofollow noopener" target="_blank">
            <img src="https://forum.fast-report.com/en/uploads/063/BQFK111CHX1Z.png" alt="image" />
        </a>
    </div>
</div></div><p><br /></p>]]>
        </description>
    </item>
    <item>
        <title>PDF popmenu doesn't always appear</title>
        <link>https://forum.fast-report.com/en/discussion/17549/pdf-popmenu-doesnt-always-appear</link>
        <pubDate>Thu, 18 Aug 2022 07:29:15 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>Mindert</dc:creator>
        <guid isPermaLink="false">17549@/en/discussions</guid>
        <description><![CDATA[<p>I&#39;m using Delphi XE11 and FR2022.2.7</p><p>Starting in Windows 10 a Delphi app, show a Fastreport and choose PDF, then most of the time a popup appears where and on which name to save the pdf.</p><p>But sometimes this PopUp doesn&#39;t appear. Then I have to close and restart the application and try again.</p><p>Does anyone know what can be the cause?</p>]]>
        </description>
    </item>
    <item>
        <title>Why printing blank last page</title>
        <link>https://forum.fast-report.com/en/discussion/1241/why-printing-blank-last-page</link>
        <pubDate>Wed, 29 Sep 2004 16:41:01 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>petesouthwest</dc:creator>
        <guid isPermaLink="false">1241@/en/discussions</guid>
        <description><![CDATA[ Hi<br />
<br />
I have a basic report with a page header and master data bands. When I print preview my report there is always an extra blank page at the end. Any ideas why?<br />
<br />
Thanks<br />
Pete]]>
        </description>
    </item>
    <item>
        <title>first two rows of fastreport repeated</title>
        <link>https://forum.fast-report.com/en/discussion/17413/first-two-rows-of-fastreport-repeated</link>
        <pubDate>Thu, 31 Mar 2022 12:44:23 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>Ana Rodrigues</dc:creator>
        <guid isPermaLink="false">17413@/en/discussions</guid>
        <description><![CDATA[<div><div>
    <div>
        <a href="https://forum.fast-report.com/en/uploads/376/WXXZOLJPQNJU.jpg" rel="nofollow noopener" target="_blank">
            <img src="https://forum.fast-report.com/en/uploads/376/WXXZOLJPQNJU.jpg" alt="image" />
        </a>
    </div>
</div></div><p>Hi,</p><p>I am using a fastReport with PageHeader and MasterData, connected to TfrxDBDataset, through a FDMemTable.</p><p>The query has 2 records as a result, but on the report, it outputs repeated the first record twice.</p><p>What&#39;s happening here? How can i prevent this to happen?</p><p>I send an example by file.</p><p>Thanks in advance</p><p>Ana</p>]]>
        </description>
    </item>
    <item>
        <title>Data Band that must span 2 to 5 pages</title>
        <link>https://forum.fast-report.com/en/discussion/16518/data-band-that-must-span-2-to-5-pages</link>
        <pubDate>Sun, 10 Jan 2021 07:26:46 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>MikeInTaos</dc:creator>
        <guid isPermaLink="false">16518@/en/discussions</guid>
        <description><![CDATA[<p>I am using the latest FR FMX2 with Delphi 10.3.3, and I think that a band that spans more than one output page would solve the problem I have with data from one record will never fit on one page.  This situation occurs even though none of the fields require stretching due to variable length text such as memo data.</p><p>I have tried using additional Pages in the designer, but these appear at the end of the report, after all data for the first page.  What I need is a Page 1 that has data from some fields, and a Page 2 that has data from different fields in the same record.  This report will have only one Master and one Detail and one SubDetail record, and the Master and Detail are each just one row, but the data from one SubDetail needs to span pages.</p><p>Can I just give the SubDetail databand a height of something like 40 or 400 as needed to accommodate all my fields, and still get output that is correctly laid out and with PageHeaders and PageFooters as I do when I only have 1 page in the designer?  Or should I try sub-reports?  Any other suggested approach?</p>]]>
        </description>
    </item>
    <item>
        <title>Changing database server (hostname) at runtime</title>
        <link>https://forum.fast-report.com/en/discussion/620/changing-database-server-hostname-at-runtime</link>
        <pubDate>Thu, 22 Apr 2004 19:36:45 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>tomward</dc:creator>
        <guid isPermaLink="false">620@/en/discussions</guid>
        <description><![CDATA[ I am trying to change the hostname of my database server (stored in the params property of the DBXDatabase component in the report) at runtime.  Can I do this from within delphi?  What I need to do is run one report on potentially multiple different sql servers.]]>
        </description>
    </item>
    <item>
        <title>rtMultiple</title>
        <link>https://forum.fast-report.com/en/discussion/125/rtmultiple</link>
        <pubDate>Tue, 18 Nov 2003 06:12:42 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>binary</dc:creator>
        <guid isPermaLink="false">125@/en/discussions</guid>
        <description><![CDATA[ Hi, help please  <img src="https://forum.fast-report.com/en/resources/emoji/wink.png" title=";)" alt=";)" height="20" /><br />
<br />
I'm having a problem printing pages as 1,2,3..1,2,3...<br />
<br />
My report looks as follows :<br />
<br />
Page 1:<br />
Page Header<br />
Group Header<br />
MasterData<br />
Page Footer<br />
<br />
Page 2:<br />
Page Header (with text boxes with if statements)<br />
<br />
Page 2 does not need data from the dataset on page one, however I do set a variable [language] in the group header on page 1. I use this variable for if statements on page two.]]>
        </description>
    </item>
    <item>
        <title>limit Number of rows on a report</title>
        <link>https://forum.fast-report.com/en/discussion/1552/limit-number-of-rows-on-a-report</link>
        <pubDate>Mon, 29 Nov 2004 12:03:21 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>ettiend</dc:creator>
        <guid isPermaLink="false">1552@/en/discussions</guid>
        <description><![CDATA[hi<br />
<br />
I would like to know if there is a way to limit rows printed on a report before is goes to the next page<br />
For example if my dataset returns 10 rows. I would like to print 5 rows on page 1 and 5 rows on page 2.<br />
My report is set to A4.<br />
<br />
Thanks<br />
Ettienne Du Plessis<br />
Senior analyst<br />
First National Battery<br />
ettiend@battery.co.za]]>
        </description>
    </item>
    <item>
        <title>Fastreport 2.5 - IBO</title>
        <link>https://forum.fast-report.com/en/discussion/15052/fastreport-2-5-ibo</link>
        <pubDate>Mon, 12 Nov 2018 10:11:33 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>K.-D.</dc:creator>
        <guid isPermaLink="false">15052@/en/discussions</guid>
        <description><![CDATA[Hello,<br />
I have been running Fastreport 2.5 with IBO 4.8.6 under Delphi 6 Professional for several years. It works fine with the native components.<br />
<br />
Now I have IBO 5.9.9 installed. I can not install the FR6.dpk package from Fastreport 2.5. The package looks like under:<br />
<br />
requires<br />
VCL,<br />
VCLSMP,<br />
DesignIDE<br />
{$ IFDEF IBO}<br />
{IFDEF IBO4}<br />
, IBO40CRT_D6,<br />
IBO40FRT_D6,<br />
IBO40TRT_D6,<br />
IBO40VRT_D6,<br />
IBO40XRT_D6<br />
{$ ELSE}<br />
, IBO_D6<br />
{$ ENDIF}<br />
.......<br />
<br />
A package with the name IBO_D6.dpk does not exist.<br />
<br />
For IBO 5.9.9, the packages have the same names. It stands only instead of &quot;40&quot; &quot;5&quot; there.<br />
<br />
The question now is, is there a new package FR6.dpk for IBO 5? Or is it easy to replace the names?<br />
<br />
greeting<br />
K.-D.]]>
        </description>
    </item>
    <item>
        <title>Change Hour Formats and Sum Hours</title>
        <link>https://forum.fast-report.com/en/discussion/14624/change-hour-formats-and-sum-hours</link>
        <pubDate>Tue, 20 Mar 2018 13:45:07 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>Brio</dc:creator>
        <guid isPermaLink="false">14624@/en/discussions</guid>
        <description><![CDATA[Hi guys i need some help..<br />
<br />
I am using an Anviz CrossChex aplication to generate some report.<br />
<br />
When i generate the report all the data who are in hh:mm:ss it converts to decimal and calculate some values in the report...<br />
<br />
The thing is that i need to have all the data which are shown in the yellow rectangle of the attached images it is shown in the format hh:mm:ss and the totals are shown too in that format.<br />
<br />
How can i do it??<br />
<br />
Or if i attached the report can someone convert me the file plz???<br />
<br />
Thanks!<br />
<br />
P.D: Sorry for my english but im an Spanish native user.]]>
        </description>
    </item>
    <item>
        <title>Error &amp;quot;Class Datasets not found&amp;quot; when I try load from a stram</title>
        <link>https://forum.fast-report.com/en/discussion/14527/error-quot-class-datasets-not-found-quot-when-i-try-load-from-a-stram</link>
        <pubDate>Tue, 16 Jan 2018 13:03:23 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>Guto Zambon</dc:creator>
        <guid isPermaLink="false">14527@/en/discussions</guid>
        <description><![CDATA[Hi, I'm save the report with all the data printing with the code .SaveToStream, but when I try to import with Load from stream de report show the message: &quot;Project noxmobWindowsLocalFenix.exe raised exception class EClassNotFound with message 'Class Datasets not found'.&quot;<br />
<br />
I'm using Delphi Tokyo 10.2 and Fast 2.0 FMX, my application is a FireMonkey multi Device application.]]>
        </description>
    </item>
    <item>
        <title>Help with data row index</title>
        <link>https://forum.fast-report.com/en/discussion/14193/help-with-data-row-index</link>
        <pubDate>Tue, 30 May 2017 06:08:15 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>ahmed abd</dc:creator>
        <guid isPermaLink="false">14193@/en/discussions</guid>
        <description><![CDATA[hi<br />
<br />
i am a user using fast report 2.4 to arrange some report but when i use a columns for example users_info i place it in the master data and the report contains two users and i want to display each user name all i get is the name of the first user name twice .<br />
<br />
is there a way i can tell it the index of the row so i can get both user names .<br />
<br />
thanks in advance .<br />
]]>
        </description>
    </item>
    <item>
        <title>*.frf edit</title>
        <link>https://forum.fast-report.com/en/discussion/2209/frf-edit</link>
        <pubDate>Wed, 11 May 2005 07:11:50 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>siema</dc:creator>
        <guid isPermaLink="false">2209@/en/discussions</guid>
        <description><![CDATA[Hi!<br />
<br />
I wonder if there's a way to adit an *.frf file?<br />
<br />
Thanks for your help in advance...<br />
<br />
rgds]]>
        </description>
    </item>
    <item>
        <title>Memo - OnAfterData</title>
        <link>https://forum.fast-report.com/en/discussion/13790/memo-onafterdata</link>
        <pubDate>Thu, 27 Oct 2016 12:19:32 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>adelmus</dc:creator>
        <guid isPermaLink="false">13790@/en/discussions</guid>
        <description><![CDATA[Hello.<br />
Is there any method in Memo object like OnAfterData (of course in 2.5)?<br />
<br />
Thanks for any answer]]>
        </description>
    </item>
    <item>
        <title>[SCRIPT] Printing in two different printer</title>
        <link>https://forum.fast-report.com/en/discussion/13528/script-printing-in-two-different-printer</link>
        <pubDate>Tue, 14 Jun 2016 04:52:05 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>Michael Goh</dc:creator>
        <guid isPermaLink="false">13528@/en/discussions</guid>
        <description><![CDATA[Dear All,<br />
<br />
I have been using a program that uses fastreport as the report generator. We are supplied also with the designer, so we can create our own reports<br />
Thus, I can not change within code that build the program.<br />
<br />
My Problem is I have a report that may have 2 pages of different content and must printed in two different printers due to different paper size.<br />
<br />
<br />
Can we do the customization within the scripts, may be in &quot;onbeforeprint&quot; ?<br />
<br />
Thanks folks<br />
<br />
Regards<br />
Michael]]>
        </description>
    </item>
    <item>
        <title>OLE Object</title>
        <link>https://forum.fast-report.com/en/discussion/13445/ole-object</link>
        <pubDate>Fri, 13 May 2016 06:54:40 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>JohnLeBarbare</dc:creator>
        <guid isPermaLink="false">13445@/en/discussions</guid>
        <description><![CDATA[Hello everybody,<br />
<br />
I'm new on this forum.<br />
I'm french and I'm fastreport's user since 3 years in my company to realise reports from our production software.<br />
<br />
Today, I need help to realise a report with excel Ole objet.<br />
<br />
I would like to insert in excel ole object (in specific cell), the value of a specific table field.<br />
Somebody can help me?<br />
<br />
Thank a lot.<br />
<br />
<br />
]]>
        </description>
    </item>
    <item>
        <title>Delphi&amp;#39;s Variables</title>
        <link>https://forum.fast-report.com/en/discussion/131/delphi-39-s-variables</link>
        <pubDate>Tue, 18 Nov 2003 16:32:41 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>S.Barco</dc:creator>
        <guid isPermaLink="false">131@/en/discussions</guid>
        <description><![CDATA[ In the Delphi projects I use Delphi's Global Variables, ??it's posible to pass/go these variables to FR,  (in a Report Title Band u other Band type)?.<br />
<br />
In a lengthy previous topic, Samuray reply:<br />
<br />
&lt;span style='color:blue'&gt;<b>Nothing problem.<br />
frVariables := anyvalue;<br />
after use variable with name 'ANYVARNAME' in report.</b>&lt;/span&gt;<br />
<br />
But, I'm try with this method and d'ont work.<br />
<br />
- frVariables it's a object of all frReport 's vars?<br />
<br />
Sorry for my English, I try to explain better: I want to print (in Report Title Band and Page Header Band) some Global Delphi vars than I use in a Delphi form like: CompanyName, UserName, ComputerName and others ??How can I do it?<br />
<br />
Thanks Again<br />
]]>
        </description>
    </item>
    <item>
        <title>Force new page</title>
        <link>https://forum.fast-report.com/en/discussion/13240/force-new-page</link>
        <pubDate>Sun, 31 Jan 2016 09:14:42 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>Rory O'Driscoll</dc:creator>
        <guid isPermaLink="false">13240@/en/discussions</guid>
        <description><![CDATA[How do I ensure that a page 2 always prints to a new page and is not dependant on the amount of informaiton on page 1?]]>
        </description>
    </item>
    <item>
        <title>Optional fields in Address Blocks</title>
        <link>https://forum.fast-report.com/en/discussion/3794/optional-fields-in-address-blocks</link>
        <pubDate>Tue, 20 Feb 2007 22:51:13 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>Explorer</dc:creator>
        <guid isPermaLink="false">3794@/en/discussions</guid>
        <description><![CDATA[sorry, there is no way to delete a post and I wanted to change the title<br />
<br />
see Suppress blank fields in name/address block post.]]>
        </description>
    </item>
    <item>
        <title>How to change PaperSource &amp;quot;First page&amp;quot; in code</title>
        <link>https://forum.fast-report.com/en/discussion/12748/how-to-change-papersource-quot-first-page-quot-in-code</link>
        <pubDate>Wed, 22 Apr 2015 02:10:06 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>Craig NZ</dc:creator>
        <guid isPermaLink="false">12748@/en/discussions</guid>
        <description><![CDATA[I am using XE6 C++ with FastReports 4.15.10<br />
<br />
I am putting together a general option for my users to enable them to change the Paper Source (feed location) of the selected printer from default or Tray1 to MP Tray.  I know that you can change this in the designer by going to the File-&gt;Page Settings.  But how do I change that inside my code prior to printing.<br />
<br />
The reason behind this is most of the reports are going to be default or tray 1, but I have some reports that are for printing sheets of labels, and they will be/ or could be single sheet feed by the user.  So in my configuration area, I want to be able to allow the user to pre-define where the labels are going to be feed from.<br />
<br />
I have tried, prior to frxReport-&gt;PrepareReport(true), in going in to the frxReport-&gt;PrintOptions-&gt;Printer = default.  And changing this to MP Tray, but the printer still feeds from Tray1.  If I set the Firstpage and Otherpage to MF Tray, and do a preview, the printer feeds from the location needed.<br />
<br />
And yes I know, if I have the PrintOptions-&gt;ShowDialog checked, one can go in to the printer settings and then change the paper source, but I am working on the KISS for the users, as not all of them are going to be computer savvy<br />
<br />
<br />
]]>
        </description>
    </item>
    <item>
        <title>eclise and fastreport</title>
        <link>https://forum.fast-report.com/en/discussion/12619/eclise-and-fastreport</link>
        <pubDate>Thu, 05 Mar 2015 07:28:23 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>gurjer48</dc:creator>
        <guid isPermaLink="false">12619@/en/discussions</guid>
        <description><![CDATA[hi ,<br />
1.Is it possible to open fastreport developed in fastreport 2015.1.3 in ECLIPSE like in visual studio using dll and  webreport component.<br />
2.How to open .frx file in fast report viewer is it possible.<br />
<br />
<br />
please reply<br />
Regards<br />
Sudarshan<br />
<br />
<br />
]]>
        </description>
    </item>
    <item>
        <title>Alternative to Pragnaan Export Filters</title>
        <link>https://forum.fast-report.com/en/discussion/3801/alternative-to-pragnaan-export-filters</link>
        <pubDate>Fri, 02 Mar 2007 09:30:36 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>noyasoftnix</dc:creator>
        <guid isPermaLink="false">3801@/en/discussions</guid>
        <description><![CDATA[Hi<br />
<br />
I use the pragnaan export filter Excel and have many problems with. They know if some alternative exists to export Excel without OLE.<br />
<br />
Thank]]>
        </description>
    </item>
    <item>
        <title>OMR-Code possible?</title>
        <link>https://forum.fast-report.com/en/discussion/389/omr-code-possible</link>
        <pubDate>Sun, 08 Feb 2004 21:49:28 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>Supertrooper</dc:creator>
        <guid isPermaLink="false">389@/en/discussions</guid>
        <description><![CDATA[Hallo,<br />
<br />
is there a way to print OMR-Code on the (left) side of the page? OMR-Code is a lot of lines (like barcode) for form processing. Can I produce a rectangle with a group of lines near on the margin of the page?]]>
        </description>
    </item>
    <item>
        <title>Designer Splitters</title>
        <link>https://forum.fast-report.com/en/discussion/2157/designer-splitters</link>
        <pubDate>Wed, 27 Apr 2005 05:57:02 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>zsleo</dc:creator>
        <guid isPermaLink="false">2157@/en/discussions</guid>
        <description><![CDATA[This is not a major issue but it is annoying.<br />
<br />
D7 FR 3.12 Enterprise<br />
<br />
In design mode viewer the splitters on the left and right side are not allowing me to alter the width of the Report/Page tree on the left or the Data/Variables/Funtions viewer on the right hand side.<br />
<br />
Is this a bug or is there somewhere I can change a setting?<br />
<br />
TIA<br />
<br />
Zane]]>
        </description>
    </item>
    <item>
        <title>Problems Changing Chart Line Colours (Colors)</title>
        <link>https://forum.fast-report.com/en/discussion/12441/problems-changing-chart-line-colours-colors</link>
        <pubDate>Mon, 08 Dec 2014 00:46:39 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>Corbett</dc:creator>
        <guid isPermaLink="false">12441@/en/discussions</guid>
        <description><![CDATA[I'm creating a report in XE7 FMX FR 2.2.1 with a chart using data from a TfrxUserDataSet.  If I attempt to assign the color I get no colour.  My OnGetValue procedure is as follows.<br />

<pre><code>procedure TForm2.frxReport1GetValue(const VarName: string; var Value: Variant);
begin
  if (VarName = 'XValue') then
    Value := MyData[frxUserDataSet1.RecNo].XValue;
  if (VarName = 'YValue') then
    Value := MyData[frxUserDataSet1.RecNo].YValue;
  if (VarName = 'Col') then
    Value :=  Random($FFFFFF);
end;
</code></pre>
<br />
Using the same code with a VCL report works as expected.  Am I doing something wrong or is this a bug?<br />
<br />
Thanks<br />
<br />
Steve]]>
        </description>
    </item>
    <item>
        <title>pictures load not every time</title>
        <link>https://forum.fast-report.com/en/discussion/12206/pictures-load-not-every-time</link>
        <pubDate>Tue, 07 Oct 2014 09:37:43 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>Nicky</dc:creator>
        <guid isPermaLink="false">12206@/en/discussions</guid>
        <description><![CDATA[Hi,<br />
<br />
I use fast report 2.44. (I do not know if CLX or VCL). My form is an delivery note print out and I load with the fast report a picture from a database table into the delivery note (fast report form). My problem is that the picture do not appears every time on the report. Sometimes the picture appears on the report and sometimes not (sporadically). When the picture was not loaded then I can???t see it on the preview windows and after print out the printer have printed the form with a blank/black logo. I assume that the preview windows load the form faster as the fast report can load the picture from the database table.<br />
<br />
Could you please give me an tip how I can fix this problem? Thank you <img src="style_emoticons/&lt;#EMO_DIR#&gt;/smile.gif&quot; style=&quot;vertical-align:middle&quot; emoid=&quot;:)&quot; border=&quot;0&quot; alt=&quot;smile.gif&quot; /&gt;" alt="&gt;" />]]>
        </description>
    </item>
    <item>
        <title>Unicode Support in Fast Report 2.4</title>
        <link>https://forum.fast-report.com/en/discussion/11943/unicode-support-in-fast-report-2-4</link>
        <pubDate>Mon, 23 Jun 2014 11:01:08 +0000</pubDate>
        <category>FastReport 2.xx VCL</category>
        <dc:creator>Bathiya Priyadarshana</dc:creator>
        <guid isPermaLink="false">11943@/en/discussions</guid>
        <description><![CDATA[Hi Everyone,<br />
<br />
We are using Fast Report 2.4 with a legacy Delphi 6 application.<br />
<br />
And we are in need of printing some Unicode characters (to be specific, the currency symbol of &quot;Baht&quot;) in one of the reports.<br />
<br />
Can someone please share a reference on how to specify Unicode characters in Fast Report 2.4?<br />
<br />
Thanks in advance..!!]]>
        </description>
    </item>
   </channel>
</rss>
