<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Data Access Worldwide Forums - Open Source</title>
		<link>http://support.dataaccess.com/Forums/</link>
		<description>The Open Source area is a discussion and up/download area to share files within the developer community.</description>
		<language>en</language>
		<lastBuildDate>Wed, 19 Jun 2013 18:24:37 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://support.dataaccess.com/Forums/images/misc/rss.png</url>
			<title>Data Access Worldwide Forums - Open Source</title>
			<link>http://support.dataaccess.com/Forums/</link>
		</image>
		<item>
			<title><![CDATA[L&L Blank Line]]></title>
			<link>http://support.dataaccess.com/Forums/showthread.php?50735-L-amp-L-Blank-Line&amp;goto=newpost</link>
			<pubDate>Sun, 09 Jun 2013 18:45:11 GMT</pubDate>
			<description><![CDATA[So using L&L version 16, how does one show a blank line in a table?  I've set the "Ignore blank line" property to "No", tried setting the fixed...]]></description>
			<content:encoded><![CDATA[<div>So using L&amp;L version 16, how does one show a blank line in a table?  I've set the &quot;Ignore blank line&quot; property to &quot;No&quot;, tried setting the fixed height and a few other things and no joy.  The only way I've been able to do it is to put some kind of character in it which kind of goes against the blank line concept.</div>

 ]]></content:encoded>
			<category domain="http://support.dataaccess.com/Forums/forumdisplay.php?4-Open-Source">Open Source</category>
			<dc:creator>Bob Worsley</dc:creator>
			<guid isPermaLink="true">http://support.dataaccess.com/Forums/showthread.php?50735-L-amp-L-Blank-Line</guid>
		</item>
		<item>
			<title><![CDATA[L&L Two tables]]></title>
			<link>http://support.dataaccess.com/Forums/showthread.php?50688-L-amp-L-Two-tables&amp;goto=newpost</link>
			<pubDate>Tue, 04 Jun 2013 02:42:56 GMT</pubDate>
			<description><![CDATA[I tried to create a single page report that pulls data from two small 5-row tables.  I therefore created a two L&L table report using the...]]></description>
			<content:encoded><![CDATA[<div>I tried to create a single page report that pulls data from two small 5-row tables.  I therefore created a two L&amp;L table report using the cListLabelWrapper class.  The single table works as expected but when I include the second one everything gets screwy (technical term...).  I found a section in the developer manual that talks about using two L&amp;L tables in one report but I didn't understand what it was trying to say - a little cryptic.  Judging from the fact that the first table pretty much works, I'd guess there's some kind of initialization or special handling necessary for the second table.  Ideas on how I should do this?<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &nbsp; &nbsp; &nbsp; Send SQLSetConnect of hoSQL MSSQLDRV_ID TM_CONNECT<br />
&nbsp; &nbsp; &nbsp; &nbsp; Get SQLConnect&nbsp; &nbsp;  of hoSQL &quot;&quot; &quot;&quot; to hdbc<br />
&nbsp; &nbsp; &nbsp; &nbsp; If (hdbc &lt;&gt; 0) Begin<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get SQLOpen of hdbc to hstmt<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If (hstmt &lt;&gt; 0) Begin<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get psLocalArea to sArea<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get sGetLoadSQL_Local iCustomerID sArea to sSQL<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Send SQLExecDirect of hstmt sSQL<br />
&nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Repeat<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get SQLFetch of hstmt to iFetchResult<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If (iFetchResult &lt;&gt; 0) Begin<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get SQLColumnValue of hstmt 1 to sArea<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get SQLColumnValue of hstmt 2 to sSpecial<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get SQLColumnValue of hstmt 3 to iCustomerID<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get SQLColumnValue of hstmt 4 to sTerminal<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get SQLColumnValue of hstmt 5 to nMinimum<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get SQLColumnValue of hstmt 6 to nFrom100<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get SQLColumnValue of hstmt 7 to nFrom1000<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get SQLColumnValue of hstmt 8 to nFrom2000<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get SQLColumnValue of hstmt 9 to nFrom3000<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get SQLColumnValue of hstmt 10 to nFrom5000<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get SQLColumnValue of hstmt 11 to nCap<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set psLocalArea to sArea<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set pnMin to nMinimum<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set pn100 to nFrom100<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set pn1000 to nFrom1000<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set pn2000 to nFrom2000<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set pn3000 to nFrom3000<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set pn5000 to nFrom5000<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set pnCap to nCap<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get PrintData of hoLL to iRet<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Move 1 to iPrinted<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Until (iFetchResult = 0)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Send SQLClose of hstmt<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Send SQLDisconnect of hdbc<br />
&nbsp; &nbsp; &nbsp; &nbsp; End<br />
<br />
//******************************************************************<br />
// Second table routine<br />
//******************************************************************<br />
&nbsp; &nbsp; &nbsp; &nbsp; Get LLPrintFields of hoLL to iRet<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; Move 0 to iPrinted<br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; Get SQLConnect&nbsp; &nbsp;  of hoSQL &quot;&quot; &quot;&quot; to hdbc2<br />
&nbsp; &nbsp; &nbsp; &nbsp; If (hdbc2 &lt;&gt; 0) Begin<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get SQLOpen of hdbc2 to hstmt2<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If (hstmt2 &lt;&gt; 0) Begin<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get psLocalArea to sArea<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get sGetLoadSQL_Special sArea to sSQL<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Send SQLExecDirect of hstmt2 sSQL<br />
&nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Repeat<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get SQLFetch of hstmt2 to iFetchResult<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If (iFetchResult &lt;&gt; 0) Begin<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get SQLColumnValue of hstmt2 1 to sArea<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get SQLColumnValue of hstmt2 2 to nDailyDay<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get SQLColumnValue of hstmt2 3 to nDailyEvening<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get SQLColumnValue of hstmt2 4 to nDailyMid<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get SQLColumnValue of hstmt2 5 to nSatDay<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get SQLColumnValue of hstmt2 6 to nSatEvening<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get SQLColumnValue of hstmt2 7 to nSunHol<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set psSpecArea&nbsp; &nbsp; to sArea<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set pnSpecMFDay&nbsp;  to nDailyDay<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set pnSpecMFEve&nbsp;  to nDailyEvening<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set pnSpecMFNight to nDailyMid<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set pnSpecSatAM&nbsp;  to nSatDay<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set pnSpecSatPM&nbsp;  to nSatEvening<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set pnSpecSun&nbsp; &nbsp;  to nSunHol<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get PrintData of hoLL to iRet<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Move 1 to iPrinted<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Until (iFetchResult = 0)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Send SQLClose of hstmt2<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Send SQLDisconnect of hdbc2<br />
&nbsp; &nbsp; &nbsp; &nbsp; End</code><hr />
</div> </div>

 ]]></content:encoded>
			<category domain="http://support.dataaccess.com/Forums/forumdisplay.php?4-Open-Source">Open Source</category>
			<dc:creator>Bob Worsley</dc:creator>
			<guid isPermaLink="true">http://support.dataaccess.com/Forums/showthread.php?50688-L-amp-L-Two-tables</guid>
		</item>
	</channel>
</rss>
