<?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 Studio — FastReport Forum</title>
        <link>https://forum.fast-report.com/en/</link>
        <pubDate>Thu, 14 May 2026 16:00:07 +0000</pubDate>
        <language>en</language>
            <description>FastReport Studio — FastReport Forum</description>
    <atom:link href="https://forum.fast-report.com/en/categories/fastreport-studio/feed.rss" rel="self" type="application/rss+xml"/>
    <item>
        <title>Using Script functions on aggregate functions</title>
        <link>https://forum.fast-report.com/en/discussion/17860/using-script-functions-on-aggregate-functions</link>
        <pubDate>Wed, 27 Sep 2023 14:21:39 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>SMVince</dc:creator>
        <guid isPermaLink="false">17860@/en/discussions</guid>
        <description><![CDATA[<p>Hi, </p><p>I need help on the following issue :</p><p>I have a data band with 3 elements such as : a GroupHeader, a MasterData and a GroupFooter.</p><p>The MasterData uses a dataset containing multiple entries. One of the fields is a duration in seconds. As this this duration is unreadable, I made a small function in the script (made in Pascalscript). This function takes the duration as a parameter and does a series of calculations to return a more readable string. </p><p>Using this function in a memo in the MasterData, the duration is converted on the fly and works as expected.</p><p>About the GroupFooter, it is used to display aggregated data of these multiple durations.</p><p>However, I cannot use this function in the GroupFooter as one of the memos contains the sum of the fields (duration) mentionned above. So I have something looking like this : <code spellcheck="false">[secondsToFormatedDuration([SUM(&lt;groupOfData.&quot;duration&quot;, MasterData1)])]</code>. As the <code spellcheck="false">SUM()</code> function returns an Array Variant object, I am unable to convert it to an integer in order to use it as a parameter for the <code spellcheck="false">secondsToFormatedDuration()</code> function. In the pascalscript code, nothing has succeeded to either convert it by using a cast, or using methods of the variant. Maybe this is not the way to do it? How can I still format the duration amount to a human readable format for the entries and the aggregate?</p><p><br /></p><p>What am I missing on?</p><p>example of the script :</p><pre spellcheck="false">function secondsToFormatedDuration( sec : integer ) : String;
var
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;h,m,s : integer;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;str : String;
begin
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;h := sec div 3600;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;m := (sec mod 3600) div 60;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;s := sec mod 60;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;str := Format(&#39;%.2d:%.2d:%.2d&#39;, [h,m,s]);
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;result := str;
end;
</pre><p>Main page structure :</p><div><div>
    <div>
        <a href="https://forum.fast-report.com/en/uploads/512/0165Z4HXPUV0.png" rel="nofollow noopener" target="_blank">
            <img src="https://forum.fast-report.com/en/uploads/512/0165Z4HXPUV0.png" alt="image" />
        </a>
    </div>
</div></div><p>The value that works : (third column of the MasterData)</p><p><code spellcheck="false">[secondsToFormatedDuration(&lt;getAllStateTopsBetweenDates.&quot;topdurationfield&quot;&gt;)]</code></p><p>The value that doesnt work : (third column of the GroupFooter)</p><p><code spellcheck="false">[secondsToFormatedDuration([SUM(&lt;getAllStateTopsBetweenDates.&quot;topdurationfield&quot;&gt;,MasterData1)])]</code></p>]]>
        </description>
    </item>
    <item>
        <title>Number of copies different when other user</title>
        <link>https://forum.fast-report.com/en/discussion/17807/number-of-copies-different-when-other-user</link>
        <pubDate>Wed, 14 Jun 2023 14:39:30 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>shorst</dc:creator>
        <guid isPermaLink="false">17807@/en/discussions</guid>
        <description><![CDATA[<p>I have a report (our fastreport version is 6.7.1 and embedded in our ERP system ISAH) </p><p>where I need to set the number or copies depending on the user who is starting the report.</p><p>Can this be done?</p>]]>
        </description>
    </item>
    <item>
        <title>Abort report after Dialog</title>
        <link>https://forum.fast-report.com/en/discussion/5671/abort-report-after-dialog</link>
        <pubDate>Tue, 09 Jun 2009 10:14:09 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>MSC</dc:creator>
        <guid isPermaLink="false">5671@/en/discussions</guid>
        <description><![CDATA[Hi,<br />
<br />
how can i abort the printing out or preview of a report, when i have clicked a cancel button in the dialogpage ?<br />
<br />
The event defined in the script:<br />
<br />
procedure BitBtnAbortOnExit(Sender: TfrxComponent);<br />
begin<br />
<br />
end;<br />
<br />
Don't know how to stop the report so that will not be printed out or previewed.<br />
<br />
thx &amp; regards]]>
        </description>
    </item>
    <item>
        <title>Set Chart Color from data value</title>
        <link>https://forum.fast-report.com/en/discussion/16961/set-chart-color-from-data-value</link>
        <pubDate>Wed, 23 Jun 2021 16:20:27 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>rhalabicki</dc:creator>
        <guid isPermaLink="false">16961@/en/discussions</guid>
        <description><![CDATA[<p>I have a as part of the dataset, an RGB color.  When I use the designers and set the Color Column to that column it doesn&#39;t use the value.</p><p>What format should the data be in to use the color column function in the chart </p><div><div>
    <div>
        <a href="https://forum.fast-report.com/en/uploads/382/RXCRXQI9UCPL.jpg" rel="nofollow noopener" target="_blank">
            <img src="https://forum.fast-report.com/en/uploads/382/RXCRXQI9UCPL.jpg" alt="image" />
        </a>
    </div>
</div></div><p><br /></p>]]>
        </description>
    </item>
    <item>
        <title>ASCII characters in database</title>
        <link>https://forum.fast-report.com/en/discussion/16546/ascii-characters-in-database</link>
        <pubDate>Sat, 23 Jan 2021 22:41:30 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>serazoo</dc:creator>
        <guid isPermaLink="false">16546@/en/discussions</guid>
        <description><![CDATA[<p>Hello FR community</p><p>Newbie here :) please help</p><p>The same 3 ASCII characters are saved in many &quot;customer notes&quot; in sql database</p><p>FastReport reads them as is :</p><p>&amp;#13 : return</p><p>&amp;#10 : line Feed (Lf)</p><p>&amp;#39 : apostrophe &#39;</p><p>Is there a way a FastReport text holder converts to UTF8... or maybe a &quot;string replace&quot; script to replace them with a space... anything really to hide those characters in reports?</p><p>Please guide me</p><p>Thank you</p><p>Sandra</p>]]>
        </description>
    </item>
    <item>
        <title>Alignment</title>
        <link>https://forum.fast-report.com/en/discussion/14935/alignment</link>
        <pubDate>Thu, 06 Sep 2018 08:37:51 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>Yamamoto</dc:creator>
        <guid isPermaLink="false">14935@/en/discussions</guid>
        <description><![CDATA[If the page is set to A4 it looks on the first picture.<br />
<br />
When I set the page to 80x297 for (pos printer) it looks like on the next picture.<br />
<br />
My question is how to set this as auto align so i can print it on 80x297 pos printer]]>
        </description>
    </item>
    <item>
        <title>Change Connection String(ADO) in Run-Time in vb.net</title>
        <link>https://forum.fast-report.com/en/discussion/14713/change-connection-string-ado-in-run-time-in-vb-net</link>
        <pubDate>Mon, 30 Apr 2018 08:25:10 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>saeed s</dc:creator>
        <guid isPermaLink="false">14713@/en/discussions</guid>
        <description><![CDATA[hi<br />
I want to change connection string after load report file in vb.net<br />
code please<br />
]]>
        </description>
    </item>
    <item>
        <title>Dialogue Parameter for ListBox or ComboBox</title>
        <link>https://forum.fast-report.com/en/discussion/14692/dialogue-parameter-for-listbox-or-combobox</link>
        <pubDate>Thu, 19 Apr 2018 09:18:26 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>Farhan</dc:creator>
        <guid isPermaLink="false">14692@/en/discussions</guid>
        <description><![CDATA[Hi<br />
Can I've the complete code please and steps<br />
I've a combo box . showing all the Regions which I like to select but ,It only allow me to select one.<br />
firstly does the ComboBox allow to select Multiple values If Yes please adivse How ?<br />
<br />
If not  I can ListBox but can I've the code with the choice if the user can select 'All Regions' or 'Specific'<br />

<blockquote>
<div><a rel="nofollow" href="/en/profile/"></a> wrote:</div>
<div>If RegionRadioButton.Checked = True Then<br />
i = RegionNameComboBox.SelectedIndex<br />
RegionID = RegionIDComboBox.Items.Item(i)<br />
MsgBox(RegionID)<br />
Report.SetParameterValue(&quot;RegionID&quot;, RegionID)<br />
MsgBox(&quot;LastCheck&quot;,RegionID)<br />
End IF</div>
</blockquote>
The following is the legacy  code where if the user select 'All region' (AllCompanyRadioButton) it use hard code values but ELSE select multiple values and its work fine shown below which is , appreciate if any simple code for this
<blockquote>
<div><a rel="nofollow" href="/en/profile/"></a> wrote:</div>
<div>If AllCompanyRadioButton.Checked = True Then<br />
Report.SetParameterValue(&quot;RegionsByte&quot;, &quot;15,14,13,12,99,88,77......................&quot;)<br />
Else<br />
Dim RegionIDString As String = &quot;&quot;<br />
Dim RegionDescString As String<br />
Dim i As Integer<br />
Dim x As Integer<br />
Dim y As String<br />
<br />
For i = 0 To (RegionListBox.SelectedItems.Count - 1)<br />
x = RegionListBox.SelectedIndices(i)<br />
y = RegionIDListBox.Items.Item(x)<br />
If i = 0 Then<br />
RegionDescString = RegionListBox.SelectedItems(i)<br />
RegionIDString = y<br />
Else<br />
RegionDescString = RegionDescString &amp; &quot;, &quot; &amp; RegionListBox.SelectedItems(i)<br />
RegionIDString = y &amp; &quot;, &quot; &amp; RegionIDString<br />
End If<br />
Next<br />
Report.SetParameterValue(&quot;RegionsByte&quot;, RegionIDString)<br />
Report.SetParameterValue(&quot;RegionsDescParam&quot;, RegionDescString)<br />
'### END - Identifies which region codes have been selected then assigns corresponding<br />
'### region ID, puts into a delimited string to pass back to SQL as parameter.<br />
End If</div>
</blockquote>
<br />
<br />
Many thanks]]>
        </description>
    </item>
    <item>
        <title>ReadioButton.Checked</title>
        <link>https://forum.fast-report.com/en/discussion/14668/readiobutton-checked</link>
        <pubDate>Wed, 11 Apr 2018 11:24:25 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>Farhan</dc:creator>
        <guid isPermaLink="false">14668@/en/discussions</guid>
        <description><![CDATA[Hi All,<br />
I'm passing the parameter through Radio Button so the user can select the (Sale Person) from the List<br />
During Testing wen I select specific Sales person (Mr B Smith) its show the results for the previous Sales Person (Mr A Smith)<br />
I've two control on the form<br />
<br />
SaleNameComboBox the data coming through from 'SalesPerson' query column of all distinct SalesName<br />
SalesID ComboBox  again the data coming through  from 'SalesPerson'  query column of all distinct SalesID<br />
<br />
In the code window<br />
I've use following codes<br />
<br />
<b>On the form Load </b>
<blockquote>
<div><a rel="nofollow" href="/en/profile/"></a> wrote:</div>
<div>Report.SetParameterValue(&quot;TechID&quot;, 0)<br />
SalesTechNameComboBox.Visible = False</div>
</blockquote>
<br />
On the FilterRadioButton
<blockquote>
<div><a rel="nofollow" href="/en/profile/"></a> wrote:</div>
<div>If SalesTechNameRadioButton.Checked = True Then<br />
SalesTechNameComboBox.Visible = True<br />
'SalesTechNameRadioButton.Checked = True 'commented<br />
'SalesTechNameComboBox.SelectedIndex = -1      'commented<br />
'MsgBox(&quot;aaaa&quot;)<br />
End IF</div>
</blockquote>
<br />
On the btnOk_Click<br />

<blockquote>
<div><a rel="nofollow" href="/en/profile/"></a> wrote:</div>
<div>Dim i As Integer<br />
Dim TechID As Integer<br />
<br />
'Tech<br />
If SalesTechNameRadioButton.Checked = True Then<br />
i = SalesTechNameComboBox.SelectedIndex<br />
TechID = SalesTechIDComboBox.Items.Item(i)<br />
Report.SetParameterValue(&quot;TechID&quot;, TechID)<br />
ElseIf TechNameRadioButton.Checked = True Then<br />
Report.SetParameterValue(&quot;TechID&quot;, 0)<br />
End If</div>
</blockquote>
<br />
<br />
hope make sense?<br />
thanks for your help in advance<br />
]]>
        </description>
    </item>
    <item>
        <title>adding variable issue</title>
        <link>https://forum.fast-report.com/en/discussion/14578/adding-variable-issue</link>
        <pubDate>Sun, 25 Feb 2018 01:03:21 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>hamidmahdood</dc:creator>
        <guid isPermaLink="false">14578@/en/discussions</guid>
        <description><![CDATA[hi everybody<br />
i have problems working with fast report in visual basic 6<br />
i cant add any string value in variable likes below code
<pre><code>Call frx.AddVariable(prog, &quot;new&quot;, Label1.Caption)
</code></pre>
<img src="http://uupload.ir/files/2si1_err.jpg" alt="2si1_err.jpg" /><br />
tnx for your help]]>
        </description>
    </item>
    <item>
        <title>Where is the Scheduler?</title>
        <link>https://forum.fast-report.com/en/discussion/6114/where-is-the-scheduler</link>
        <pubDate>Mon, 26 Oct 2009 23:16:30 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>CatchEm35</dc:creator>
        <guid isPermaLink="false">6114@/en/discussions</guid>
        <description><![CDATA[The product page (website) for Fastreport Studio indicated there is a scheduling function that comes with the product for emailing reports.<br />
<br />
<b>&quot;+ added scheduler service (you can schedule your report and receive it by e-mail) &quot;</b><br />
<br />
I have not been able to locate any scheduling service with the installation of FastReport Studio 4.8. Any suggestions on what I'm missing?]]>
        </description>
    </item>
    <item>
        <title>HTML tag font color does&amp;#39;nt work</title>
        <link>https://forum.fast-report.com/en/discussion/14518/html-tag-font-color-does-39-nt-work</link>
        <pubDate>Wed, 10 Jan 2018 21:06:45 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>Pyorel89</dc:creator>
        <guid isPermaLink="false">14518@/en/discussions</guid>
        <description><![CDATA[Hello,<br />
I want to produce a report which takes the data in a dataset (made in visual basic). All data are in string. I input for some of the data an HTML tag in order to change there appearance. All the &quot;simple&quot; tags like <i>, <b> ... work   very well. But the tag &lt;font color= red&gt; doe'nt work. The text stays in black in the preview and in the pdf file.<br />
I don't understand why !!<br />
Please can ou help me!<br />
Thank you by advance.<br />
PL <img src="style_emoticons/&lt;#EMO_DIR#&gt;/sad.gif&quot; style=&quot;vertical-align:middle&quot; emoid=&quot;:(&quot; border=&quot;0&quot; alt=&quot;sad.gif&quot; /&gt;" alt="&gt;" /></b></i>]]>
        </description>
    </item>
    <item>
        <title>TfrxPreviewX &amp;amp; VB6</title>
        <link>https://forum.fast-report.com/en/discussion/14443/tfrxpreviewx-amp-vb6</link>
        <pubDate>Fri, 17 Nov 2017 13:56:56 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>ecooper</dc:creator>
        <guid isPermaLink="false">14443@/en/discussions</guid>
        <description><![CDATA[Hello<br />
<br />
Really would appreciate anyone giving this newbie with Fast Reports a helping hand. Trying to use the TfrxPreviewX  component within VB6 so that I can preview a report on a form.<br />
<br />
Looked through the forum / manual but can't get to grips with it.<br />

<pre><code>Dim TfrxPreviewX1 As FastReport.TfrxPreviewX
Dim Rpt As FastReport.TfrxReport

    
Private Sub Form_Load()



Set Rpt = TfrxReport.Create(Nil) &lt;&lt;&lt;Error 91 here

Rpt.PreviewOptions.Maximized = False
Rpt.PreviewOptions.Modal = False
Rpt.LoadFromFile (&quot;C:\Program Files (x86)\FastReports\FastReport Studio\Examples\VisualBasic\VB6_Demo\ADOQuery_Casting\Casting.fr3&quot;)
Call Rpt.PrepareReport(True)
Call Rpt.ShowPreparedReport



End Sub
</code></pre>
<br />
I get a Error 91 Object Required.<br />
<br />
Thanks]]>
        </description>
    </item>
    <item>
        <title>Add Value From a textbox to Report</title>
        <link>https://forum.fast-report.com/en/discussion/13782/add-value-from-a-textbox-to-report</link>
        <pubDate>Mon, 24 Oct 2016 19:58:12 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>Javi</dc:creator>
        <guid isPermaLink="false">13782@/en/discussions</guid>
        <description><![CDATA[Hello All, I am very new to this. I am tring to add the value from a textbox in Visual Basic to a report, but keep getting a blank Report.<br />
I have tried the following:<br />
<br />
Report2.Load(Report Name)<br />
Report2.SetParameterValue(&quot;Text11&quot;, Visual Basic textbox)<br />
Report2.show()<br />
<br />
I not sure what I am doing wrong.]]>
        </description>
    </item>
    <item>
        <title>erreur lors de l aper?§u dans Fastreport</title>
        <link>https://forum.fast-report.com/en/discussion/14326/erreur-lors-de-l-aper-u-dans-fastreport</link>
        <pubDate>Mon, 21 Aug 2017 16:01:41 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>lysmata</dc:creator>
        <guid isPermaLink="false">14326@/en/discussions</guid>
        <description><![CDATA[Bonjour c'est ma premi??re participation dans ce forum<br />
<br />
Je commence malheureusement par un probleme je voulais voir l'apercu de ma realisation et je la vois malheureusement pas<br />
j'ai ce type de message.<br />
Il est g?©nant de chaque fois passer par visualStud 2017 pour voir si le formulaire est bon<br />
alors que la fonction appercu est bien plus pratique.<br />
<br />
Merci d'avance pour votre aide<br />
A+<br />
]]>
        </description>
    </item>
    <item>
        <title>Crystal Report --&amp;#62; Fast Report?</title>
        <link>https://forum.fast-report.com/en/discussion/5663/crystal-report-62-fast-report</link>
        <pubDate>Mon, 08 Jun 2009 14:43:32 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>Datamex</dc:creator>
        <guid isPermaLink="false">5663@/en/discussions</guid>
        <description><![CDATA[Would it be possible to convert a Crystal Report to a Fast Report? We have A LOT of Crystal Reports and we might want to switch to Fast Reports, but we do not want to rebuild ALL our reports.]]>
        </description>
    </item>
    <item>
        <title>fastreport3 on 64 bit</title>
        <link>https://forum.fast-report.com/en/discussion/13550/fastreport3-on-64-bit</link>
        <pubDate>Thu, 23 Jun 2016 07:26:39 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>jjit</dc:creator>
        <guid isPermaLink="false">13550@/en/discussions</guid>
        <description><![CDATA[<br />
<br />
Dear all,<br />
<br />
We are using fastreport3 for our report development and after registering fastreport3.dll , our application runs smoothly<br />
<br />
but on 64 bit operating system, after registering fastreport3.dll, our application gives error, the error file is fr3_error.jpeg<br />
<br />
While compiling the application on 64 bit O.S, the error message is attached in fr3_code_error.jpeg.<br />
<br />
as per suggestions we have installed latest version of fastreport, but still gets same error.<br />
<br />
if anybody having solution, kindly guide on this issue.<br />
<br />
Pl go thro the attachment.<br />
<br />
Regards<br />
<br />
Sanjay.<br />
<br />
]]>
        </description>
    </item>
    <item>
        <title>Calling fastreport.exe by another application: OCI initialization error</title>
        <link>https://forum.fast-report.com/en/discussion/13344/calling-fastreport-exe-by-another-application-oci-initialization-error</link>
        <pubDate>Tue, 15 Mar 2016 13:50:33 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>MSC</dc:creator>
        <guid isPermaLink="false">13344@/en/discussions</guid>
        <description><![CDATA[Well, I am using fastreport studio since 7 years.<br />
We have changed our Windows server to W2K12 R2. Calling the fastreport.exe (see example below) with our production software, causes the error, that OCI (Oracle Client Interface) cannot be initialized.<br />
<br />
Calling fastreport on the server in console or via RDP manually, fastreport opens, loads and prints the report.<br />
I am using the latest clientsoftware of Oracle including OLE provider Software: <img src="https://forum.fast-report.com/en/resources/emoji/anguished.png" title="D:" alt="D:" height="20" />\app\product\12.1.0\dbhome_1\oledb\mesg,<br />
regsvr32 /s <img src="https://forum.fast-report.com/en/resources/emoji/anguished.png" title="D:" alt="D:" height="20" />\app\product\12.1.0\dbhome_1\BIN\OraOLEDB12.dll.<br />
<br />
Do you have an idea why it is a difference between calling the fastreport.exe manually or by another application? It seems, if calling by another application, the environment is clean in which this process is running: can't find variables like ORACLE_HOME or other things...<br />
<br />
commandline:<br />
<br />
start fastreport /nologo /connection=MRSPEDAG.WORLD /SHOW /param=&quot;SDGID=''MRS-502115-MRS-1'';ADRID=''126338'';USRID=''scm'';AG_ID=''455'';GRENZ=''-'';VDAT=''09.09.2010'';ADRID_WE=''163135;&quot; .\report\ausfuhrabmeldung.fr3<br />
<br />
Have you an idea to solve this problem?]]>
        </description>
    </item>
    <item>
        <title>Multicolumn in master-detail report</title>
        <link>https://forum.fast-report.com/en/discussion/13077/multicolumn-in-master-detail-report</link>
        <pubDate>Sun, 25 Oct 2015 05:29:18 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>mehdi Ekrami Nezhad</dc:creator>
        <guid isPermaLink="false">13077@/en/discussions</guid>
        <description><![CDATA[I have problem with multicolumn in master-detail report. in fact, I want to have master section simply with master field.<br />
but i want to design the detail section for multi column.<br />
someone told me that I use sub report in the detail section. but it doesn't work properly [img]style_emoticons/&lt;#EMO_DIR#&gt;/sad.gif&quot; style=&quot;vertical-align:middle&quot; emoid=&quot;:(&quot; border=&quot;0&quot; alt=&quot;sad.gif&quot; /&gt;
you can see the picture attachment to understand my meaning.

Please help me...
What should i do????[/img]]]>
        </description>
    </item>
    <item>
        <title>Problem loading a BackPicture to Report</title>
        <link>https://forum.fast-report.com/en/discussion/11707/problem-loading-a-backpicture-to-report</link>
        <pubDate>Tue, 22 Apr 2014 15:17:38 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>Frank Miglionico</dc:creator>
        <guid isPermaLink="false">11707@/en/discussions</guid>
        <description><![CDATA[Hey there.<br />
<br />
I am using FastReport 4 Embarcadero Edition and Delphi XE3. I wish to, through code, set a backpicture to a report whenever I print 2 pages of it, marking the 2nd page as a &quot;establishment print&quot;.<br />
Anyway, however I try, it seems not to work. I have tried with a lot of examples found online and none of them worked.<br />
<br />
Could anyone tell me how is the standard (and functional) way to set through code, the backpicture?<br />
<br />
Thanks.]]>
        </description>
    </item>
    <item>
        <title>load report without refresh the page</title>
        <link>https://forum.fast-report.com/en/discussion/12737/load-report-without-refresh-the-page</link>
        <pubDate>Fri, 17 Apr 2015 08:07:43 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>dengcf@evget.com</dc:creator>
        <guid isPermaLink="false">12737@/en/discussions</guid>
        <description><![CDATA[I add a ReportPreviewControl in my WebFrom,and the left side on the WebFrom is a MenuList.when i click the Menu item, the preview control should load the special report.<br />
but when i click the menu item,the page will be refreshed .what should I do to load the report without refresh page?]]>
        </description>
    </item>
    <item>
        <title>Table reports</title>
        <link>https://forum.fast-report.com/en/discussion/11639/table-reports</link>
        <pubDate>Sun, 06 Apr 2014 11:53:02 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>mohammadmv</dc:creator>
        <guid isPermaLink="false">11639@/en/discussions</guid>
        <description><![CDATA[Hi everyone<br />
Is it possible to build the page tables are fixed, and the table reports the number of fields is not?<br />
Please guide me]]>
        </description>
    </item>
    <item>
        <title>How to using it in PHP?</title>
        <link>https://forum.fast-report.com/en/discussion/11792/how-to-using-it-in-php</link>
        <pubDate>Sat, 10 May 2014 04:49:24 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>steven hui</dc:creator>
        <guid isPermaLink="false">11792@/en/discussions</guid>
        <description><![CDATA[Hello to you<br />
<br />
I'm using VB6 with FastReport for COM/ActiveX<br />
<br />
In VB6, I Write simple code as shown below :<br />
Dim report As TfrxReport<br />
Dim export As IfrxBuiltinExports<br />
<br />
Private Sub Form_Load()<br />
Set report = CreateObject(&quot;FastReport.TfrxReport&quot;)<br />
End Sub<br />
<br />
Private Sub Command1_Click()<br />
report.LoadReportFromFile (&quot;d:/rptmember.fr3&quot;)<br />
report.PrepareReport (True)<br />
Set export = report<br />
export.ExportToPDF &quot;d:/demo.pdf&quot;, False, False, False, False, &quot;&quot;, &quot;&quot;<br />
<br />
End Sub<br />
<br />
The above code is work well in VB6<br />
<br />
My questions is How to translate it into PHP?<br />
<br />
I tried but still not works, as shown<br />
&lt;?php<br />
$report= New COM(&quot;FastReport.TfrxReport&quot;);<br />
$export= New COM(&quot;FastReport.TfrxDispatchableExports&quot;);<br />
<br />
$report-&gt;LoadReportFromFile(&quot;d:/rptmember.fr3&quot;);<br />
$report-&gt;PrepareReport(True);<br />
Set export = report<br />
$export-&gt;ExportToPDF(&quot;d:/demo.pdf&quot;, False, False, False, False, &quot;&quot;, &quot;&quot;);<br />
<br />
<br />
$len = filesize(&quot;d:/demo.pdf&quot;);<br />
header(&quot;Content-type: application/pdf&quot;);<br />
header(&quot;Content-Length: $len&quot;);<br />
header(&quot;Content-Disposition: inline; filename=d:/demo.pdf&quot;);<br />
readfile(&quot;d:/demo.pdf&quot;);<br />
?&gt;<br />
<br />
Please advice and correct my code<br />
<br />
Thanks &amp; Regards,<br />
Steven<br />
<br />
]]>
        </description>
    </item>
    <item>
        <title>Hide button in Preview Toolbar</title>
        <link>https://forum.fast-report.com/en/discussion/10207/hide-button-in-preview-toolbar</link>
        <pubDate>Sat, 16 Mar 2013 03:44:57 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>nz1912</dc:creator>
        <guid isPermaLink="false">10207@/en/discussions</guid>
        <description><![CDATA[hi,<br />
<br />
I can show certain button only on Preview page by using this code :<br />
<br />
Report.PreviewOptions.Buttons := 8 or 4 or 1 or 16 or 32; 'view export,save,print,zoom and find button<br />
<br />
Question : Export button have multiple format. I only want to show Export to excel. How to this?]]>
        </description>
    </item>
    <item>
        <title>change Localization on runtime in c#</title>
        <link>https://forum.fast-report.com/en/discussion/11109/change-localization-on-runtime-in-c</link>
        <pubDate>Sat, 05 Oct 2013 18:45:31 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>afarinesh</dc:creator>
        <guid isPermaLink="false">11109@/en/discussions</guid>
        <description><![CDATA[how to set special Localization on runtime in c# (programming)?]]>
        </description>
    </item>
    <item>
        <title>Showing Result of a Query in GroupHeader</title>
        <link>https://forum.fast-report.com/en/discussion/11868/showing-result-of-a-query-in-groupheader</link>
        <pubDate>Fri, 30 May 2014 12:51:59 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>nirmal.rajmohan</dc:creator>
        <guid isPermaLink="false">11868@/en/discussions</guid>
        <description><![CDATA[Hi Friends,<br />
<br />
I need to run the below Query to find the total population and show it in the GroupHeader.<br />
<br />
<b>&lt;!--fonto:Courier New--&gt;&lt;span style=&quot;font-family:Courier New&quot;&gt;&lt;!--/fonto--&gt;SELECT Sum(M)+Sum(F) AS Total FROM Population WHERE (((Population.[EntryDate])&lt;#1/1/2001#));&lt;!--fontc--&gt;&lt;/span&gt;&lt;!--/fontc--&gt;</b><br />
<br />
Need to replace the hard coded date in the SQL query with the value from Group Header.<br />
<br />
Database<br />
<a href="http://postimg.org/image/agwvvw9xr/" rel="nofollow"> <img src="http://s27.postimg.org/agwvvw9xr/image.png" alt="image.png" /></a><br />
<br />
Report<br />
<a href="http://postimg.org/image/czikwkvnz/" rel="nofollow"> <img src="http://s27.postimg.org/czikwkvnz/Report.png" alt="Report.png" /></a><br />
<br />
<br />
I tried Sub-Reports, events, etc.. but I cannot get this to work...<br />
I have attached the Report with this post, please check it.<br />
<br />
Please help me to fix it.<br />
<br />
<br />
Thanks in advance,<br />
<br />
<b>Nirmal. R</b>]]>
        </description>
    </item>
    <item>
        <title>relation between master detail report by c#</title>
        <link>https://forum.fast-report.com/en/discussion/12033/relation-between-master-detail-report-by-c</link>
        <pubDate>Sun, 03 Aug 2014 09:21:44 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>fatemeh</dc:creator>
        <guid isPermaLink="false">12033@/en/discussions</guid>
        <description><![CDATA[hi<br />
my code is:<br />
DataSet dataset = new DataSet();<br />
DataTable dt1 = new DataTable(&quot;dt1&quot;);<br />
DataTable dt2 = new DataTable(&quot;dt2&quot;);<br />
<br />
dt1.Columns.Add(&quot;ID&quot;);<br />
dt1.Columns.Add(&quot;Row&quot;);<br />
dt2.Columns.Add(&quot;ID&quot;);<br />
dt2.Columns.Add(&quot;Row&quot;);<br />
<br />
dt1.Rows.Add(&quot;1&quot;, &quot;parent1&quot;);<br />
dt1.Rows.Add(&quot;2&quot;, &quot;parent2&quot;);<br />
dt2.Rows.Add(&quot;1&quot;, &quot;detail11&quot;);<br />
dt2.Rows.Add(&quot;1&quot;, &quot;detail12&quot;);<br />
dt2.Rows.Add(&quot;2&quot;, &quot;detail21&quot;);<br />
dt2.Rows.Add(&quot;2&quot;, &quot;detail22&quot;);<br />
dataset.Tables.Add(dt1);<br />
dataset.Tables.Add(dt2);<br />
System.Data.DataColumn parentColumn = dataset.Tables[0].Columns[&quot;ID&quot;];<br />
System.Data.DataColumn childColumn = dataset.Tables[1].Columns[&quot;ID&quot;];<br />
DataRelation dataRel = new DataRelation(&quot;parent2Child&quot;, parentColumn, childColumn);<br />
dataset.Tables[1].ParentRelations.Add(dataRel);<br />
/////////////////////////////////////////<br />
Report report = new Report();<br />
report.Load(&quot;PmPlanReportIdentityF.frx&quot;);<br />
report.RegisterData(dataset, &quot;ds&quot;);<br />
report.RegisterData(dataset.Tables[&quot;dt1&quot;], &quot;a&quot;);<br />
report.RegisterData(dataset.Tables[&quot;dt2&quot;], &quot;b&quot;);<br />
report.GetDataSource(&quot;a&quot;).Enabled = true;<br />
<br />
ReportPage page1 = new ReportPage();<br />
page1.Name = &quot;Page1&quot;;<br />
report.Pages.Add(page1);<br />
page1.ReportTitle = new ReportTitleBand();<br />
page1.ReportTitle.Name = &quot;ReportTitle1&quot;;<br />
page1.ReportTitle.Height = Units.Millimeters * 15f;<br />
<br />
TextObject SchoolTitleText = new TextObject();<br />
SchoolTitleText.Name = &quot;SchoolTitle&quot;;<br />
SchoolTitleText.Bounds = new RectangleF(0, 0,<br />
Units.Centimeters * 19, Units.Centimeters * 1);<br />
SchoolTitleText.Text = &quot;NorthDale School&quot;;<br />
SchoolTitleText.HorzAlign = HorzAlign.Left;<br />
SchoolTitleText.Font = new Font(&quot;Tahoma&quot;, 14, FontStyle.Bold);<br />
page1.ReportTitle.Objects.Add(SchoolTitleText);<br />
<br />
GroupHeaderBand group1 = new GroupHeaderBand();<br />
group1.Name = &quot;GroupHeader1&quot;;<br />
group1.Height = Units.Centimeters * 1;<br />
group1.Condition = &quot;[a.ID]&quot;;<br />
page1.Bands.Add(group1);<br />
<br />
group1.GroupFooter = new GroupFooterBand();<br />
group1.GroupFooter.Name = &quot;GroupFooter1&quot;;<br />
group1.GroupFooter.Height = Units.Millimeters * 5;<br />
<br />
DataBand databand1 = new DataBand();<br />
databand1.Name = &quot;Data1&quot;;<br />
databand1.Height = Units.Centimeters * 0.5f;<br />
databand1.DataSource = report.GetDataSource(&quot;a&quot;);<br />
group1.Data = databand1;<br />
<br />
TextObject TeacherText = new TextObject();<br />
TeacherText.Name = &quot;TeacherText&quot;;<br />
TeacherText.Bounds = new RectangleF(0, 0, Units.Millimeters * 59, Units.Millimeters * 7f);<br />
TeacherText.Text = &quot;[a.ID]&quot;;<br />
TeacherText.Font = new Font(&quot;Tahoma&quot;, 11, FontStyle.Bold);<br />
<br />
databand1.Objects.Add(TeacherText);<br />
<br />
DataBand Databand2 = new DataBand();<br />
Databand2.Name = &quot;Data2&quot;;<br />
Databand2.Height = Units.Centimeters * 0.5f;<br />
Databand2.DataSource = report.GetDataSource(&quot;b&quot;);<br />
<br />
TextObject PupilText = new TextObject();<br />
PupilText.Name = &quot;PupilText&quot;;<br />
PupilText.Bounds = new RectangleF(0, 0, Units.Millimeters * 59, Units.Millimeters * 7f);<br />
PupilText.Text = &quot;[b.Row]&quot;;<br />
PupilText.Font = new Font(&quot;Tahoma&quot;, 10, FontStyle.Regular);<br />
Databand2.Objects.Add(PupilText);<br />
databand1.AddChild(Databand2);<br />
<br />
report.Show();<br />
<br />
output:<br />
1<br />
detail11<br />
detail12<br />
detail21<br />
detail22<br />
<br />
2<br />
detail11<br />
detail12<br />
detail21<br />
detail22<br />
<br />
how can I create relation and Ouput:<br />
1<br />
detail11<br />
detail12<br />
<br />
2<br />
detail21<br />
detail22]]>
        </description>
    </item>
    <item>
        <title>Create filter by dialog page</title>
        <link>https://forum.fast-report.com/en/discussion/11978/create-filter-by-dialog-page</link>
        <pubDate>Mon, 07 Jul 2014 13:35:02 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>KSS</dc:creator>
        <guid isPermaLink="false">11978@/en/discussions</guid>
        <description><![CDATA[hi, Fastreports is embedded in an application of us since there new release. In the past we get automatic a dialog popup for printing reports.<br />
Choises were; status, sheduled ( between), category, etc.<br />
I made now the main reports we need, and they are working fine, but I get all the reports in the database. I tried the dialogpage, the code page,<br />
but I am not a programmer and I need some help. I looked everywere for examples but even in the helpfils of fastreport I could not find a solution for my problem. Maybe it is very easy, if I see a fitting example, I think there are here enough users who know how.<br />
The database we use is Firebird and I need f.e. only the reports printed with the status &quot;ready&quot;<br />
vy  <img src="style_emoticons/&lt;#EMO_DIR#&gt;/unsure.gif&quot; style=&quot;vertical-align:middle&quot; emoid=&quot;:unsure:&quot; border=&quot;0&quot; alt=&quot;unsure.gif&quot; /&gt;" alt="&gt;" />]]>
        </description>
    </item>
    <item>
        <title>right to left rich</title>
        <link>https://forum.fast-report.com/en/discussion/11811/right-to-left-rich</link>
        <pubDate>Fri, 16 May 2014 13:11:37 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>mohammadmv</dc:creator>
        <guid isPermaLink="false">11811@/en/discussions</guid>
        <description><![CDATA[hi<br />
hoe use right to left rich tex???<br />
helppppp me pleaseeeeeeeeeeeeeeee!!!!!!!!!!]]>
        </description>
    </item>
    <item>
        <title>Master Detail Report</title>
        <link>https://forum.fast-report.com/en/discussion/11801/master-detail-report</link>
        <pubDate>Wed, 14 May 2014 04:06:19 +0000</pubDate>
        <category>FastReport Studio</category>
        <dc:creator>steven hui</dc:creator>
        <guid isPermaLink="false">11801@/en/discussions</guid>
        <description><![CDATA[Hello to you,<br />
<br />
I'm newbie in learning Fastreport, using FastReport COM/ActiveX<br />
<br />
I want to create master detail report<br />
Database is in MS-Excel<br />
<br />
tbl 1<br />
invoiceno id_no seq_no description<br />
001 1 1 a<br />
001 1 2 b<br />
001 2 1 c<br />
001 2 2 d<br />
001 3 1 e<br />
<br />
tbl 2<br />
invoiceno id_no seq_no description amount<br />
001 1 1 Alice 100<br />
001 1 2 Mike 150<br />
001 2 1 Jack 200<br />
001 2 2 Brown 500<br />
001 2 3 Margareth 100<br />
001 2 4 Bobby 150<br />
001 3 1 Shaun 400<br />
001 3 2 Lewis 200<br />
<br />
How to figure out master detail report becomes :<br />
invoiceno id_no seq_no description amount<br />
001 1 1 a<br />
001 1 2 b<br />
001 1 1 Alice 100<br />
001 1 2 Mike 150<br />
001 2 1 c<br />
001 2 2 d<br />
001 2 1 Jack 200<br />
001 2 2 Brown 500<br />
001 2 3 Margareth 100<br />
001 2 4 Bobby 150<br />
001 3 1 e<br />
001 3 1 Shaun 400<br />
001 3 2 Lewis 200<br />
Total 1800<br />
<br />
I attached the database file (data.xls as data.zip), please show in .fr3 file<br />
<br />
Please help and thanks in advance<br />
<br />
Thanks &amp; Regards,<br />
Steven]]>
        </description>
    </item>
   </channel>
</rss>
