Delphi 5 & Crystal XI Rel. 2 (RDC) how to? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T05:46:54Zhttp://stackoverflow.com/feeds/question/1048327http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1048327/delphi-5-crystal-xi-rel-2-rdc-how-to0Delphi 5 & Crystal XI Rel. 2 (RDC) how to?pastacool2009-06-26T10:11:33Z2009-07-01T17:15:43Z
<p>Hi Guys!</p>
<p>I'm trying to work with the <a href="http://stackoverflow.com/questions/378089/how-can-i-display-crystal-xi-reports-inside-a-delphi-2007-application">class from JosephStyons</a> but I do get an "Invalid Index" Error on the line where the "User ID" should get set.</p>
<pre><code>FRpt.Database.Tables[i].ConnectionProperties.Item['User ID'] := edUserName.Text;
</code></pre>
<p>Here's my environment:</p>
<p>WinXP Sp3, Crystal Reports Developer XI Rel.2 SP4, Delphi 5 Update Pack 1</p>
<p>Any help or ideas greatly appreciated!</p>
<p>Thx,
Reinhard</p>
http://stackoverflow.com/questions/1048327/delphi-5-crystal-xi-rel-2-rdc-how-to/1049047#10490470Answer by C Harmon for Delphi 5 & Crystal XI Rel. 2 (RDC) how to?C Harmon2009-06-26T13:11:34Z2009-06-26T13:11:34Z<p>Your value for [i] could be the culprit...I can't remember for sure but I believe the first table will be Table[1] instead of Table[0] as one would expect. I altered my loop to use:</p>
<p>CrTables := CrDatabase.Tables;</p>
<p>for crTableObj in crTables do</p>
<p>You might try stepping through the table using a for loop as shown above or by starting with 1 instead of 0.</p>
<p>I hope this helps.</p>
http://stackoverflow.com/questions/1048327/delphi-5-crystal-xi-rel-2-rdc-how-to/1051541#10515410Answer by François for Delphi 5 & Crystal XI Rel. 2 (RDC) how to?François2009-06-26T22:24:03Z2009-06-26T22:24:03Z<p>Put a break point on that line and use Evaluate/Modify.<br />
It will return an error if you try something invalid. </p>
<ol>
<li><p>Examine <code>FRpt.Database.Tables[i]</code> and see if it's valid for what you think are the min and max values for i.<br />
If <code>Tables</code> is an array, one way to avoid that is to use <code>...Low(Tables) to High(Tables)</code></p></li>
<li><p>If you get your Table Ok, examine <code>FRpt.Database.Tables[i].ConnectionProperties.Item['User ID']</code> and see if it's valid.<br />
It might be that the Item getter does not like the space embedded in "User ID". Some products need either to surround by special characters like "[User ID]", other to replace by an underscore like "User_ID"</p></li>
</ol>
http://stackoverflow.com/questions/1048327/delphi-5-crystal-xi-rel-2-rdc-how-to/1070315#10703150Answer by C Harmon for Delphi 5 & Crystal XI Rel. 2 (RDC) how to?C Harmon2009-07-01T17:15:43Z2009-07-01T17:15:43Z<p>Are you also setting the password, server name and database name?</p>
<pre>
procedure TReports.LogonToDBTables(cReport:
CrystalDecisions.CrystalReports.Engine.ReportDocument;
ConnInfo: ConnectionInfo);
var
CrDataBase: Database;
CrTables: Tables;
CrTableObj: TObject;
CrTable: Table;
CrTableLogonInfo: TableLogonInfo;
iSubReportIndex: smallint;
begin
CrDataBase := CReport.Database;
CrTables := CrDatabase.Tables;
cReport.DataSourceConnections[0].IntegratedSecurity := False;
for crTableObj in crTables do
begin
crTable := CrystalDecisions.CrystalReports.Engine.Table(crTableObj);
crTableLogonInfo := crTable.LogOnInfo;
crTableLogonInfo.ConnectionInfo := ConnInfo;
crTable.ApplyLogOnInfo(crTableLogonInfo);
end;
end;
function TReports.GetConnectionInfo(): ConnectionInfo;
var
cTemp: ConnectionInfo;
begin
cTemp := ConnectionInfo.Create();
cTemp.AllowCustomConnection := True;
cTemp.ServerName := GetServerName();
cTemp.DatabaseName := GetDBName();
cTemp.UserID := GetDBUserID();
cTemp.Password := GetDBPassword();
Result := cTemp;
end;
</pre>