Crystal XI Rel2 RDC Parameter Passing - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T16:20:27Zhttp://stackoverflow.com/feeds/question/1073636http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1073636/crystal-xi-rel2-rdc-parameter-passing0Crystal XI Rel2 RDC Parameter Passingpastacool2009-07-02T10:29:25Z2009-07-03T11:12:09Z
<p>Hi!</p>
<p>I have the following setup:</p>
<ul>
<li>Delphi 5 Enterprise Update 1 Crystal</li>
<li>Reports Developer XI Rel2 (RDC 11.5)</li>
</ul>
<p>After long hours of trial&error I can now set the logon stuff as <a href="http://stackoverflow.com/questions/1048327/delphi-5-crystal-xi-rel-2-rdc-how-to">asked earlier</a> but when I try to set crystalparameters by code - it does not work and I get an empty report.</p>
<p>I've written a small app for testing (here's just a snippet):</p>
<pre><code>for i:=1 to FParamFldDefs.Count do begin
FParFldDef := FParamFldDefs.Item[i];
FParFldDef.ClearCurrentValueAndRange;
if ParFieldName = 'User' then
FParFldDef.AddCurrentValue('hugo')
else if ParFieldName = '@P_Date' then
FParFldDef.AddCurrentValue('2009.06.30')
if FParFldDef.IsDefaultValueSet then
ShowMessage('DefaultValue: ' + FparFldDef.GetNthDefaultValue(1));
//--> on loop 1 i=1 this does not show up because IsDefalutValueSet = FALSE
//--> on lopp 2 i=2 this does show '2009.06.30'
if FParFldDef.IsCurrentValueSet then
ShowMessage('CurrentValue: ' + FparFldDef.GetNthCurrentValue(1));
//--> on loop 1 i=1 this does show 'hugo'
//--> on lopp 2 i=2 this does not show because IsCurrentValueSet = False
end;
ShowMessage(FldDef.SQLQueryString); //this shows all
//stored procedure parameters empty
</code></pre>
<p>Now I've managed to have the CurrentValues set (had to save the report in question with version 11 - it was version 9 before) because IsCurrentValueSet returns True but when I try to read the SQLQuereyString I can see that all SP parameters are NULL. Any Ideas on that?</p>
http://stackoverflow.com/questions/1073636/crystal-xi-rel2-rdc-parameter-passing/1074032#10740320Answer by C Harmon for Crystal XI Rel2 RDC Parameter PassingC Harmon2009-07-02T12:15:40Z2009-07-02T12:15:40Z<p>The format of the date value might be a problem. Have you tried using 07/02/2009 or 07/02/2009 12:00 AM?</p>
http://stackoverflow.com/questions/1073636/crystal-xi-rel2-rdc-parameter-passing/1078890#10788900Answer by pastacool for Crystal XI Rel2 RDC Parameter Passingpastacool2009-07-03T11:12:09Z2009-07-03T11:12:09Z<p>Hi guys!</p>
<p>I've seen the light! If someone like me ever gets forced to deal with Delphi 5 and Crystal XI RDC - here's what I've done:</p>
<p>Prerequisites:</p>
<ul>
<li>you have tons of old Crystal Reports Version < 11.5</li>
<li>you still have to use old Delphi 5 applications</li>
</ul>
<p>Firs of all, you have to:</p>
<ol>
<li>Install Crystal Reporst Developer XI
Rel2 (the last one with RDC support and don't worry, it can be installed in parallel to your existing Crystal Reports Version (in my case it was Version 6)</li>
<li>Import Type Libraries in Delphi
(craxdrt.dll + CRViewer.dll)</li>
<li>Open the report in question with
Crystal Reports XI and save it as
version XI</li>
<li>Change any Database Connection to
OLEDB</li>
</ol>
<p>After you've done that you can use <a href="http://stackoverflow.com/questions/378089/how-can-i-display-crystal-xi-reports-inside-a-delphi-2007-application">Joseph Styons wrapper class</a> and you're just fine.
If you too have a report which gets it's data from a SQL Stored Procedure just set those parameters (their names start with an "@") like any other Crystal Parameter.</p>
<p>That's it, I'll hope this is usefull to somebody.</p>
<p>Now I'm off for some beer!</p>
<p>Cheers,
Reinhard</p>