<?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>p2p.wrox.com Forums - Crystal Reports</title>
		<link>http://p2p.wrox.com</link>
		<description>General discussion about Crystal Reports. For discussions specific to the book Professional Crystal Reports for VS.NET, please see the book discussion forum for that book.</description>
		<language>en</language>
		<lastBuildDate>Sat, 21 Nov 2009 15:20:12 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://p2p.wrox.com/images/misc/rss.jpg</url>
			<title>p2p.wrox.com Forums - Crystal Reports</title>
			<link>http://p2p.wrox.com</link>
		</image>
		<item>
			<title>Need help from the start (vb)</title>
			<link>http://p2p.wrox.com/crystal-reports/77094-need-help-start-vbulletin.html</link>
			<pubDate>Thu, 19 Nov 2009 15:03:18 GMT</pubDate>
			<description>Good Morning, 

I have been trying a few different ways to get the job done, but it never works.

mission: i need to run a cr .rpt, offer parameter...</description>
			<content:encoded><![CDATA[<div>Good Morning, <br />
<br />
I have been trying a few different ways to get the job done, but it never works.<br />
<br />
mission: i need to run a cr .rpt, offer parameter values, and then export a pdf to a file.<br />
<br />
here is what is have already, but this is giving me errors abound.<br />
<br />
if someone could steer me in the right direction, that would be great!!<br />
<br />
there is urgency to this project!  but then again, isn't every project?<br />
<br />
i have the luxury of using <acronym title="vBulletin">vb</acronym> express, so i cannot simply add a CR into my project.<br />
<br />
Public crConn As ADODB.Connection<br />
Public crRS As ADODB.Recordset<br />
Public crApp As CRAXDDRT.Application<br />
Public crRpt As CRAXDDRT.Report<br />
Public crSQL As String<br />
Public crDBTable As CRAXDDRT.DatabaseTable<br />
<br />
<br />
Test.crViewer.DisplayBorder = False<br />
Test.crViewer.DisplayTabs = False<br />
Test.crViewer.EnableDrillDown = True<br />
Test.crViewer.EnableRefreshButton = True<br />
<br />
crConn = New ADODB.Connection<br />
crConn.CursorLocation = ADODB.CursorLocationEnum.adUseClient<br />
crConn.ConnectionString = &quot;DSN=&quot;MyDSN&quot;;UID=&quot;username&quot;;Pwd=;&quot;<br />
conn.Open()  <font color="Red">~~errors here cannot connect to DSN</font><br />
<br />
rs = New ADODB.Recordset<br />
<br />
crSQL = &quot;SELECT STATEMENT W/ PARAMETERS&quot;<br />
<br />
rs.Open(crSQL, crConn, ADODB.CursorTypeEnum.adOpenStatic, ADODB.LockTypeEnum.adLockReadOnly)<br />
crApp = New CRAXDDRT.Application        <br />
crRpt = crApp.OpenReport(&quot;C:\Crystal\report.rpt&quot;)<br />
<br />
       <br />
crRpt.DiscardSavedData()<br />
crRpt.Database.SetDataSource(crRS)<br />
Test.crViewer.ReportSource = crRpt<br />
Test.crViewer.ViewReport()<br />
<br />
crRpt.ExportOptions.DiskFileName = &quot;C:\Crystal\Output.pdf&quot;<br />
crRpt.ExportOptions.DestinationType = CRExportDestinationType.crEDTDiskFile<br />
crRpt.ExportOptions.FormatType = CRExportFormatType.crEFTPortableDocFormat<br />
crRpt.Export(False)<br />
<br />
        crRS.Close()<br />
        crRS = Nothing<br />
<br />
        crConn.Close()<br />
        crConn = Nothing<br />
        crApp = Nothing<br />
        crRpt = Nothing</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/crystal-reports-113/">Crystal Reports</category>
			<dc:creator>sabre28</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/crystal-reports/77094-need-help-start-vbulletin.html</guid>
		</item>
		<item>
			<title>Complex grouping</title>
			<link>http://p2p.wrox.com/crystal-reports/76869-complex-grouping.html</link>
			<pubDate>Mon, 02 Nov 2009 19:46:44 GMT</pubDate>
			<description>Hello All,
I am facing a scenario where I have to do a complex grouping. The following is the scenario...

1. Group list of people by their...</description>
			<content:encoded><![CDATA[<div><font color="black"><font face="Verdana">Hello All,</font></font><br />
<font color="black"><font face="Verdana">I am facing a scenario where I have to do a complex grouping. The following is the scenario...</font></font><br />
<br />
<font color="black"><font face="Verdana">1. Group list of people by their birthday.</font></font><br />
<font color="black"><font face="Verdana">2. Then Group them by FirstName.(Also list all the people with the same Firstname in Italics, even if their birthday does not fall under this group. Also do not repeat those records under their birthday group).</font></font><br />
<br />
<font color="black"><font face="Verdana">Eg:-</font></font><br />
<br />
<br />
<font color="black"><font face="Verdana">                                Name                                BirthDay</font></font><br />
<font color="black"><font face="Verdana">                        ------------                                 ----------- </font></font><br />
<u><font color="black"><font face="Verdana">Jan 2009</font></font></u><br />
<font color="black"><font face="Verdana">            Jake</font></font><br />
<font color="black"><font face="Verdana">            ====</font></font><br />
<font color="black"><font face="Verdana">                        Jake Taylor                                Jan 10</font></font><br />
<font color="black"><font face="Verdana">                        <i><font face="Verdana">Jake Chandler                            Feb 23</font></i></font></font><br />
<font color="black"><font face="Verdana">            Kelly</font></font><br />
<font color="black"><font face="Verdana">            ====</font></font><br />
<font color="black"><font face="Verdana">                        Kelly George                              Jan 11</font></font><br />
<br />
<font color="black"><font face="Verdana">Feb 2009</font></font><br />
<br />
<font color="black"><font face="Verdana">Amanda</font></font><br />
<font color="black"><font face="Verdana">=====</font></font><br />
<font color="black"><font face="Verdana">            Amanda Swann                          Feb 08</font></font><br />
<font color="black"><font face="Verdana">Wolf</font></font><br />
<font color="black"><font face="Verdana">            ====</font></font><br />
<br />
<font color="black"><font face="Verdana">                        Wolf Blitzer                                Feb 11</font></font><br />
<br />
<br />
<br />
<font color="black"><font face="Verdana">in this example Jake Chandler's birth day falls in Feb, but he had to go in Jan because of the Name grouping...</font></font><br />
<br />
<font color="black"><font face="Verdana">Any input is appreciated.</font></font><br />
<br />
<font color="black"><font face="Verdana">Thanks,</font></font><br />
<font color="black"><font face="Verdana">Jay</font></font><br />
</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/crystal-reports-113/">Crystal Reports</category>
			<dc:creator>Jayahar</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/crystal-reports/76869-complex-grouping.html</guid>
		</item>
		<item>
			<title>Crystal report with multiple tables</title>
			<link>http://p2p.wrox.com/crystal-reports/76764-crystal-report-multiple-tables.html</link>
			<pubDate>Mon, 26 Oct 2009 14:31:20 GMT</pubDate>
			<description><![CDATA[Hi friends,
 
I have a crystal report with an underlying dataset consisting of 2 tables namely *'reports'* and *'organizations' *.These tables have...]]></description>
			<content:encoded><![CDATA[<div>Hi friends,<br />
 <br />
I have a crystal report with an underlying dataset consisting of 2 tables namely <b>'reports'</b> and <b>'organizations' </b>.These tables have no links.<br />
 <br />
I retrieve the reportname column value from the 'reports' table and place it in the report header section. And I list the organizations in the details section.<br />
 <br />
When there are records available in the details section, reportname is showing correctly.<br />
 <br />
But the problem is, when there are no records in the details section, reportname is not displaying in the report header section.<br />
 <br />
Can anyone suggest how to resolve this issue ?<br />
 <br />
Thanks in Advance<br />
Panna</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/crystal-reports-113/">Crystal Reports</category>
			<dc:creator>pannasn</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/crystal-reports/76764-crystal-report-multiple-tables.html</guid>
		</item>
	</channel>
</rss>
