Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: lutzs
  • Order by date
  1. lutzs

    Load report failed

    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...
  2. lutzs

    Count records where text = " " ...

    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...
  3. lutzs

    Count records where text = " " ...

    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
  4. lutzs

    Install Crystal Reports?

    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...
  5. lutzs

    foreach with new DataTable

    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...
  6. lutzs

    Show subrepot 1 time!

    Thanks! It works fine. When I suppress the details section there aren't blank sites.
  7. lutzs

    Show subrepot 1 time!

    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...
  8. lutzs

    Show subrepot 1 time!

    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...
  9. lutzs

    SubReport only once indicate

    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...
  10. lutzs

    Display DataTable with CrystalReports

    Thank you. It's the same like in my code.
  11. lutzs

    problems with cr and DataSets

    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...
  12. lutzs

    Display DataTable with CrystalReports

    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...
  13. lutzs

    problems with cr and DataSets

    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()...
  14. lutzs

    problems with cr and DataSets

    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...
  15. lutzs

    problems with cr and DataSets

    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...
  16. lutzs

    problems with cr and DataSets

    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...
  17. lutzs

    problems with cr and DataSets

    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...
  18. lutzs

    CR and DatabaseField

    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 ...
  19. lutzs

    Dont't print the report field

    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()...
  20. lutzs

    Print the field of my dataset with CR

    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...

Part and Inventory Search

Back
Top