Hi,
i've installed my .net application on a win2000 pc.
There is installed the .net framework.
When I start the application I geht this error message: "load crpe32.dll failed ...load report failed" ...
I added this component to my setup project:
- the .exe
- merge modules...
Hi,
thanks for your help. The suggestion of Naith is great.
It work's fine. But just in the details section. When I put the runningtotal field in the report header, the value is 0.
Your questions:
Sorry, the values are "text1" and "text2".
I don't want to count null values...
Hi!
I will count all records where field_6 = "Text" or "Text2".
I have this formula:
if ({F6}= "TEXT1" or {F6}="TEXT2") then 1
It works fine but I will count this records.
What can I do?
Thanks, Stephanie
Hello together!
Yesterday I have an error message when I start my c# program. The message is "... the JIT debugger is not available ..."
The Framework is installed on a Win2000 machine.
From my program I provided a setup and installed it on the PC.
In the program a CrystalReport is...
Hi,
i've created a new dataTable in my dataSet. It works fine, I can see the data with the dataGrid.
Now, I will read some rows of this table.
I use a foreach- statement:
foreach(DataRow dr_devise in dataSet.t_test.Rows)
{
...
}
But however nothing happens.
Is this table not recognized?
What...
Thank you! It works fine.
But now, I have a lot of blank sections.
For example: there are 5 emtpy sites and on page 6 is the
subreport.
I have activated the functions: "suppress blank sections" in the section expert and "suppress blank subreport" in the subreport properties...
Hi,
i have a .net application with a crystal report.
There is one table dtt with this fields:
- customerID
- securities
- securitie_text
- others
- ID
The structure of the table is this for example:
customerID securities securtie_text others ID
1 55896...
Hi,
i have a .net application with a crystal report.
There is one table dtt with this fields:
- customerID
- securities
- securitie_text
- others
- ID
The structure of the table is this for example:
customerID securities securtie_text others ID
1 55896...
Hi Ben!
It doesn't works!
I've deleted the report and removed all connections.
The strange is that contents of the tables I_KUNDE and I_BESTAND (from the oracle database) are indicated with CrystalReport. And i can show the values of DTT with a dataGrid.
Here's my code. Perhaps, you can find...
Hi,
for many days I'm concerning with the following problem:
I have a .net application with a crystal report.
There is a dataSet with 3 tables. Two tables are from my database (Table KUNDE and BESTAND).
For the third table DTT I've created a DataTable with datacolumns.
My problem is...
Hi!
Yes, I can show the data in the table (dataGrid) but not on the report.
That's my code:
...
// add the table dtt to the dataSet
dataSet.Tables.Add(dtt);
// Output DataGrid
dataGrid1.DataSource = dtt;
// Output CrystalReports
CrystalReport1 oRpt = new CrystalReport1()...
Hi Ben,
I've "translated" the code in C#:
// create DataTable and DataColumn
DataTable t = new DataTable();
DataColumn myDataColumn = new DataColumn();
myDataColumn.ColumnName = "name";
myDataColumn.DataType = typeof(System.String);
// add DataColumn to DataTable...
Hi Ben,
When I use your code I get an error message:
"System.Data.DataTable.Rows' denotes a 'property' where a 'method' was expected"
It was noticeable to me that I can't view the values of "new" DataTables.
If I choose a DataTable with existing Data from my Database, it...
Hi,
here's the code. Can you help me?
//*** new table ***
DataTable ergebnis = new DataTable();
DataColumn myDataColumn = new DataColumn();
myDataColumn.ColumnName = "kunde";
myDataColumn.DataType = typeof(System.String);
myDataColumn.DefaultValue = "test";
// add...
Hi!
For many days I'm concerning with the following problem:
I have a .net application with a crystal report.
There is a dataSet with 3 tables. Two tables are from my database. For the third table I've created a DataTable with a column.
My problem is representing contents of this third table...
Hi,
there is a crystal report and a .net application.
The report is added to the application.
There are fields of my dataSet on the report.
When I open the report with CR and click the "Preview" of my page I get this message:
"ADO.net(XML): Please enter connection information ...
Hi,
thank you for your answer.
Yes, I'm passing a DataTable to a Crystal Report (C#):
header crReportDocument = new header();
// the DataSet
programmname ds_pname = new programmname();
DataTable t_pname = new DataTable();
DataColumn myDataColumn = new DataColumn()...
Hi,
I add a field of my dataset in the crystal report (.net application).
When I click a button I print this report.
But the dataset field isn't printed at my report!
For control, I get out the field with a MessageBox.Show and the value is correct.
What is the problem?
I work with MS...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.