1
How can i use Crystal report 10 in Delphi 5
Hi all, I m using delphi 5 for developing my application. I have crystal report 10. Previously i am using Crystal report 7 in dephi. Now i need to link Crystal report 10 in delphi. if anyone can help me then pls send amil to me sijujac4u@yahoo.com Its urgent !!! Pls Help mee!!!!!
Answer Question
| February 9, 2010 9:46 AM
Crystal Reports, Crystal Reports 10, Crystal Reports X, Delphi, Delphi 5
Hi all, I m using delphi 5 for developing my application. I have crystal report 10. Previously i am using Crystal report 7 in dephi. Now i need to link Crystal report 10 in delphi. if anyone can help me then pls send amil to me sijujac4u@yahoo.com Its urgent !!! Pls Help mee!!!!!
Delphi 5 and Crystal Reports 8.5 and User Function Library
Hello all, I am trying to create a UFL in Delphi 5 for use in Crystal Reports 8.5. Does anyone know how to successfully do this? I have some examples, but they all leave out some information and I end up not being able to create the UFL and use it the way it [...]
Answer Question
| October 2, 2009 9:56 PM
Crystal Reports, Crystal Reports 8.5, Crystal Reports 8.x, Delphi 5, Delphi 5.0, UFL
Hello all, I am trying to create a UFL in Delphi 5 for use in Crystal Reports 8.5. Does anyone know how to successfully do this? I have some examples, but they all leave out some information and I end up not being able to create the UFL and use it the way it [...]
Using TRichEdit: What color is this line?
I am using Delphi 7 and a TRichEdit component that has various colored lines in it. For example, text on lines 1 through 10 is clRed, lines 11 through 14 are clGreen, lines 15 through 25 are clRed, lines 26 through 27 are clGreen, etc… What I would like to do is generate events that [...]
Answer Question
| June 27, 2009 6:31 PM
Delphi, Delphi 5, Delphi 5.0, Delphi 7, Delphi 7.0
I am using Delphi 7 and a TRichEdit component that has various colored lines in it. For example, text on lines 1 through 10 is clRed, lines 11 through 14 are clGreen, lines 15 through 25 are clRed, lines 26 through 27 are clGreen, etc… What I would like to do is generate events that [...]
Delphi and Oracle stored procedures
I’m converting an application from Delphi3 to Delphi5. I have some doubts about Stored procedures. Delphi calling stored procedures in oracle.some parameters value are set as input and passed to oracle. stored procedure in oracle returns some value. in my delphicode when the application reaches the procedure ‘execproc’ an error is thrown up. The error [...]
Answer Question
| January 29, 2009 10:13 AM
Delphi 3, Delphi 5, Delphi error messages, Delphi stored procedures, Oracle stored procedures
I’m converting an application from Delphi3 to Delphi5. I have some doubts about Stored procedures. Delphi calling stored procedures in oracle.some parameters value are set as input and passed to oracle. stored procedure in oracle returns some value. in my delphicode when the application reaches the procedure ‘execproc’ an error is thrown up. The error [...]
crystal reports in delphi
I’m upgrading an application from Delphi3 to Delphi5. Now I want to upgrade the crystal reports. what i have to do to upgrade the same?? currently i’m getting ‘Crystal reports can not connect to the database ‘ error when i try to run reports. please help me. Thanks in advance.
Answer Question
| January 2, 2009 10:09 AM
Crystal Reports, Delphi, Delphi 5
I’m upgrading an application from Delphi3 to Delphi5. Now I want to upgrade the crystal reports. what i have to do to upgrade the same?? currently i’m getting ‘Crystal reports can not connect to the database ‘ error when i try to run reports. please help me. Thanks in advance.
delphi TDBNavigator component
I’m using tdbnavigator component in delphi 5 . when click on the refresh button i got the error as ‘EDBEngine error : Table does not support this operation, because it is not uniquely indexed’. please help me on this.
Answer Question
| December 29, 2008 11:17 AM
Delphi, Delphi 5
I’m using tdbnavigator component in delphi 5 . when click on the refresh button i got the error as ‘EDBEngine error : Table does not support this operation, because it is not uniquely indexed’. please help me on this.
stored procedure in delphi with oracle
how to match the datatype of the field that is in database and the datatype of the variable that holds the value of the returned value from database using stored procedure.
Answer Question
| December 29, 2008 1:50 PM
Delphi, Delphi 5, Oracle, Oracle stored procedures, Stored Procedure variables
how to match the datatype of the field that is in database and the datatype of the variable that holds the value of the returned value from database using stored procedure.
Can we extract the data from a input file and then map that data to an existing pdf document
Hi, Can anyone tell me whether it is possible to extract the data from an input file or the database and then map that data to an existing pdf document in delphi.If not possible in delphi ,please tell me which language best suits for this.Kindly provide pointers.Thanks in advance.
Answer Question
| August 20, 2008 6:20 AM
.NET, C++, Database programming, Delphi, Delphi 5, Java
Hi, Can anyone tell me whether it is possible to extract the data from an input file or the database and then map that data to an existing pdf document in delphi.If not possible in delphi ,please tell me which language best suits for this.Kindly provide pointers.Thanks in advance.
Emed a date time picker and a checkbox into a string grid in delphi
Can anyone explain me how to embed the date time picker and checkbox at run time into a string grid in delphi.Thanks in advance.
Answer Question
| May 22, 2008 11:18 AM
Delphi, Delphi 5
Can anyone explain me how to embed the date time picker and checkbox at run time into a string grid in delphi.Thanks in advance.
Delphi 5
How to check the database field if null then populate the grid cell with zero else with the value entered in the cell. while not eof do begin grdDeal.Cells[0,iRow] := FieldByName(‘WORKBASKET_DESC’).asString; if ( FieldByName(‘PRODUCT_DEAL_NO’).asString = null) then grdDeal.Cells [1,iRow] := 0 else grdDeal.Cells [1,iRow] := FieldByName(‘PRODUCT_DEAL_NO’).asString; grdDeal.Cells[2,iRow] := FieldByName(‘WORKBASKET_ID’).asString; inc(iRow); Next; end; grdDeal.RowCount := iCount [...]
Answer Question
| May 22, 2008 6:16 AM
Delphi, Delphi 5
How to check the database field if null then populate the grid cell with zero else with the value entered in the cell. while not eof do begin grdDeal.Cells[0,iRow] := FieldByName(‘WORKBASKET_DESC’).asString; if ( FieldByName(‘PRODUCT_DEAL_NO’).asString = null) then grdDeal.Cells [1,iRow] := 0 else grdDeal.Cells [1,iRow] := FieldByName(‘PRODUCT_DEAL_NO’).asString; grdDeal.Cells[2,iRow] := FieldByName(‘WORKBASKET_ID’).asString; inc(iRow); Next; end; grdDeal.RowCount := iCount [...]
what is error message write of address 00000034 in delphi5 mean?
what is error message write of address 00000034 in delphi5 mean?
Answer Question
| April 24, 2008 4:35 AM
Delphi 5, Pascal
what is error message write of address 00000034 in delphi5 mean?
1





