<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>EntwicklerForum.org &#187; Fast-Report</title>
	<atom:link href="http://www.entwicklerforum.org/category/fastreport/feed" rel="self" type="application/rss+xml" />
	<link>http://www.entwicklerforum.org</link>
	<description>Tipps und Tricks für Entwickler</description>
	<lastBuildDate>Fri, 09 Dec 2011 17:54:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Variablen bei Fast Report auslesen</title>
		<link>http://www.entwicklerforum.org/variablen-bei-fast-report-auslesen</link>
		<comments>http://www.entwicklerforum.org/variablen-bei-fast-report-auslesen#comments</comments>
		<pubDate>Tue, 29 Jul 2008 09:18:30 +0000</pubDate>
		<dc:creator>Hannes Bischoff</dc:creator>
				<category><![CDATA[Fast-Report]]></category>

		<guid isPermaLink="false">http://www.entwicklerforum.org/?p=125</guid>
		<description><![CDATA[Hallo zusammen, zum auslesen einer Variable bei Fast Report geht man folgenderma&#223;en vor: strVariable := &#60;VARIABLE&#62;; Wichtig: Variablen sind vom Grund her Integer Variablen. Wenn ich also einen String als Variable m&#246;chte, darf ich nicht vergessen Hochkommas, z.B. &#8216;variable&#8217;, zu setzen.]]></description>
			<content:encoded><![CDATA[<p>Hallo zusammen,</p>
<p>zum auslesen einer Variable bei Fast Report geht man folgenderma&#223;en vor:</p>
<p>strVariable := &lt;VARIABLE&gt;;</p>
<p>Wichtig:<br />
 Variablen sind vom Grund her Integer Variablen. Wenn ich also einen String als Variable m&#246;chte, darf ich nicht vergessen Hochkommas, z.B. &#8216;variable&#8217;, zu setzen.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.entwicklerforum.org/variablen-bei-fast-report-auslesen/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Variablen Handling in FastReport 4</title>
		<link>http://www.entwicklerforum.org/variablen-handling-in-fastreport-4</link>
		<comments>http://www.entwicklerforum.org/variablen-handling-in-fastreport-4#comments</comments>
		<pubDate>Sat, 30 Jun 2007 09:00:01 +0000</pubDate>
		<dc:creator>Martin Schmid</dc:creator>
				<category><![CDATA[Fast-Report]]></category>

		<guid isPermaLink="false">http://www.entwicklerforum.org/wordpress/?p=53</guid>
		<description><![CDATA[Im Gegensatz zu FastReport 3 muss man bei FastRport 4 im Code, Queries und anderen Wertzuverweisungen exakt den selben Typ verwenden, sonst kommt es zu Fehlern oder falschen Ausgaben. Ansonsten verh&#228;lt sich FR4 wie FR3. Was jetzt endlich funktioniert, ist Debugging Funktion. Auch die &#8220;Laser-Lines&#8221; im visuellen Editor sind hilfreich.]]></description>
			<content:encoded><![CDATA[<p>Im Gegensatz zu FastReport 3 muss man bei FastRport 4 im Code, Queries und anderen Wertzuverweisungen <strong>exakt</strong> den selben Typ verwenden, sonst kommt es zu Fehlern oder falschen Ausgaben.</p>
<p>Ansonsten verh&#228;lt sich FR4 wie FR3.</p>
<p><span id="more-53"></span>Was jetzt endlich funktioniert, ist Debugging Funktion.</p>
<p>Auch die &#8220;Laser-Lines&#8221; im visuellen Editor sind hilfreich.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.entwicklerforum.org/variablen-handling-in-fastreport-4/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wie man einer Variable eine Wert zuweist</title>
		<link>http://www.entwicklerforum.org/wie-man-einer-variable-eine-wert-zuweist</link>
		<comments>http://www.entwicklerforum.org/wie-man-einer-variable-eine-wert-zuweist#comments</comments>
		<pubDate>Wed, 13 Jun 2007 13:19:03 +0000</pubDate>
		<dc:creator>Hannes Bischoff</dc:creator>
				<category><![CDATA[Fast-Report]]></category>

		<guid isPermaLink="false">http://www.entwicklerforum.org/wordpress/?p=48</guid>
		<description><![CDATA[Mit folgender Codezeile l&#228;sst sich einer Variablen ein Wert zuweisen: Report.Variables.Variables&#40;'VARIABLENNAME'&#41; := 'WERT';]]></description>
			<content:encoded><![CDATA[<p>Mit folgender Codezeile l&#228;sst sich einer Variablen</p>
<p><a title="FastReportVariable" href="http://www.entwicklerforum.org/wordpress/wp-content/uploads/2007/06/variablefastreport.jpg"><img src="http://www.entwicklerforum.org/wordpress/wp-content/uploads/2007/06/variablefastreport.thumbnail.jpg" alt="FastReportVariable" /></a></p>
<p>ein Wert zuweisen:</p>
<p><code> </code></p>

<div class="wp_syntax"><div class="code"><pre class="pascal" style="font-family:monospace;">Report.<span style="color: #0066ee;">Variables</span>.<span style="color: #0066ee;">Variables</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">'VARIABLENNAME'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:=</span> <span style="color: #ff0000;">'WERT'</span>;</pre></div></div>

<p><br class="spacer_" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.entwicklerforum.org/wie-man-einer-variable-eine-wert-zuweist/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OnPreviewClick bei FastReport</title>
		<link>http://www.entwicklerforum.org/onpreviewclick-bei-fastreport</link>
		<comments>http://www.entwicklerforum.org/onpreviewclick-bei-fastreport#comments</comments>
		<pubDate>Tue, 05 Jun 2007 12:27:35 +0000</pubDate>
		<dc:creator>Martin Schmid</dc:creator>
				<category><![CDATA[Delphi]]></category>
		<category><![CDATA[Fast-Report]]></category>

		<guid isPermaLink="false">http://www.entwicklerforum.org/wordpress/?p=39</guid>
		<description><![CDATA[In dem konkreten Fall ging es darum, dass der Benutzer in der Vorschau entscheiden m&#246;chte, ob das Logo mit gedruckt werden soll. Als erstes erstellt man einen zus&#228;tzlichen Dialog f&#252;r die Abfrage. Dabei ist zu beachten, dass dieser Dialog &#8220;Visible:=False&#8221; haben muss. Dann wechselt man in den Report und hinterlegt den Images ein &#8220;OnPreviewClick&#8221; Ereignis. [...]]]></description>
			<content:encoded><![CDATA[<p>In dem konkreten Fall ging es darum, dass der Benutzer in der Vorschau entscheiden m&#246;chte, ob das Logo mit gedruckt werden soll.</p>
<p><span id="more-39"></span>Als erstes erstellt man einen zus&#228;tzlichen Dialog f&#252;r die Abfrage.<br />
Dabei ist zu beachten, dass dieser Dialog &#8220;Visible:=False&#8221; haben muss.</p>
<p><a title="Dialog Frage zum Ausblenden" href="http://www.entwicklerforum.org/wordpress/wp-content/uploads/2007/06/dlgfrage_fr4.jpg"><img src="http://www.entwicklerforum.org/wordpress/wp-content/uploads/2007/06/dlgfrage_fr4.jpg" alt="Dialog Frage zum Ausblenden" /></a></p>
<p>Dann wechselt man in den Report und hinterlegt den Images ein &#8220;OnPreviewClick&#8221; Ereignis.</p>
<p><a title="OnPreviewClick Event bei FastReport" href="http://www.entwicklerforum.org/wordpress/wp-content/uploads/2007/06/onpreviewclick.jpg"><img src="http://www.entwicklerforum.org/wordpress/wp-content/uploads/2007/06/onpreviewclick.thumbnail.jpg" alt="OnPreviewClick Event bei FastReport" /></a></p>
<p>Zuletzt Schreibt man den Code ins Event.</p>

<div class="wp_syntax"><div class="code"><pre class="delphi" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">procedure</span> logo1OnPreviewClick<span style="color: #000066;">&#40;</span>Sender<span style="color: #000066;">:</span> TfrxView<span style="color: #000066;">;</span> Button<span style="color: #000066;">:</span> TMouseButton<span style="color: #000066;">;</span> Shift<span style="color: #000066;">:</span> <span style="color: #000066; font-weight: bold;">Integer</span><span style="color: #000066;">;</span> <span style="color: #000000; font-weight: bold;">var</span> Modified<span style="color: #000066;">:</span> <span style="color: #000066; font-weight: bold;">Boolean</span><span style="color: #000066;">&#41;</span><span style="color: #000066;">;</span>
<span style="color: #000000; font-weight: bold;">begin</span>
  dlgFrage<span style="color: #000066;">.</span><span style="color: #006600;">ShowModal</span><span style="color: #000066;">;</span>
  <span style="color: #000000; font-weight: bold;">if</span> dlgFrage<span style="color: #000066;">.</span><span style="color: #006600;">ModalResult</span><span style="color: #000066;">=</span>mrYes <span style="color: #000000; font-weight: bold;">then</span> <span style="color: #000000; font-weight: bold;">begin</span>
    Sender<span style="color: #000066;">.</span><span style="color: #006600;">Free</span><span style="color: #000066;">;</span>
    Modified <span style="color: #000066;">:</span><span style="color: #000066;">=</span> <span style="color: #000000; font-weight: bold;">True</span><span style="color: #000066;">;</span>
  <span style="color: #000000; font-weight: bold;">end</span><span style="color: #000066;">;</span>
<span style="color: #000000; font-weight: bold;">end</span><span style="color: #000066;">;</span></pre></div></div>

<p>Fertig.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.entwicklerforum.org/onpreviewclick-bei-fastreport/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

