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 Mike Lewis 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: *

  1. Paulus

    Pass Dataset to CR10 Subreport

    Found my own solution: Try Conn.Open() DA_Pos.Fill(DS1.pos) DA_Comment.Fill(DS1.comment) Conn.Close() Report.Database.Tables.Item("Pos").SetDataSource(DS1.pos) Report.Subreports(0).SetDataSource(DS1.comment) 'For the Subreports you can also use the name 'i.e...
  2. Paulus

    Pass Dataset to CR10 Subreport

    I'm using Crystal Reports 10 Developer Edition with VB.NET 2003. At the moment I generate ASP-Sites. The database is MySQL. If I pass only the main-Report-Dataset to the main-report, all is working fine, but if the report contains a subreport, I get a Login-Box nad can't logon. This is a part...
  3. Paulus

    I get an empty page after every printed page

    I use Crystal Reports 8 with an ASP-Page, generating an ActiveX-Report. Now after every page I get an empty page only if I start it from a webpage. If I start it directly inside Crystal Reports Report Generator it only prints one page. What can I do ?
  4. Paulus

    How can I install a truetype-font via the logon-script ?

    I want to install a barcode-font (truetype) at every PC in the network. Who can tell me how it works via the logon-script ?
  5. Paulus

    Indirect adressing of variables

    I´m looking for the possibility to address variables indirectly in VB6 I mean the following: Dim Pos1 as integer Dim Pos2 as integer Dim Pos3 as integer Dim a as integer for a = 1 to 3 'Here I want to set the three Pos-variables 'The number of the variables depends on a next a In reality my...
  6. Paulus

    Report don't use recordset opened by ASP-Page

    I 'm using Crystal Reports 8 Developer Edition. I have generated an ASP-Page, open a recordset, set some parameters and try to call a report. The report is loading, the parameters are shown, but the report don´t use the opened recordset. It only open´s the internal recordset of the .rpt - file...
  7. Paulus

    How to jump to the webclass if an input-field was left changed ?

    First I´m sorry because of my English! My problem: I have an input-field TDEKADE: <td><input name=&quot;TDEKADE&quot; value=&quot;<WC@TR>DEDEKADE</WC@TR>&quot; tabIndex=1 LANGUAGE=javascript onchange=&quot;return TDEKADE_onchange()&quot;></td> There is a Javascript Function to handle this...
  8. Paulus

    I´m looking for information about generating ASP-sites with VB6

    I'm a VB6 programmer and want to start quickly with generating ASP-sites under VB6. Where do I find: - FAQ´s - free documents - manuals to learn how to create webclasses ? Thanks in advance Paulus
  9. Paulus

    How can I accelarate my Database-Update ?

    I open both recordsets as commands from the Dataenvironment, the Access-RS as readonly, the AS/400-RS as read and write. Then move to the first record in the Access-RS, and ... (de=Dataenvironment) with de.rsAccess while not.eof de.rsAS400.addnew...
  10. Paulus

    How can I accelarate my Database-Update ?

    I don´t know which one is slow. I try to update 4400 records
  11. Paulus

    How can I accelarate my Database-Update ?

    I have an Acess 97 Recordset and want to update it from an AS/400-Recordset and it takes 24 hours !!! with an ado-connection. Do you know how to accelerate the process without using stored procedures ?
  12. Paulus

    Error: Physical database not found

    I have written a program with Visual Basic 6, using Crystal Reports. The program accesses AS/400- and a Access-Database. The Databases - access through Vb6 is working fine, but every time I start viewing the (Crystal-) report, the program shows the Error-Message: &quot;Physical Database not...
  13. Paulus

    How can I link a recordset to a subreport ?

    Thanks for the answer... but I forgot to tell you that I´m using Visual Basic Version 6 Prof. Your answer I think is a solution for ASP ?!
  14. Paulus

    How can I link a recordset to a subreport ?

    Inside my program I can link a recordset flexible to my report with the following command: Report.Database.SetDataSource DataEnvironment1.rsMyRecordset But how can I link the Reordset: MyRecordset2 to the subreport ?
  15. Paulus

    Next try !! Problems with CR8 and VB6 DE

    Nice forum here, I make a thread because the hotline at CR is permanantly busy, wait 3 days, and nobody answers. Other people make a thread and minutes later, they have 4 answers!! Now the problem: I´ve problems with reports generated under VisualBasic 6. I can now link my Crystal report in the...
  16. Paulus

    Problems with Data Environment and SCR8

    I´ve problems with reports generated under VisualBasic 6. I can now link my Crystal report in the designer inside of VB to the Data Environment. But if I try to change the formatting of the fields inside the report it is impossible, because there are no properties available for the fields, only...

Part and Inventory Search

Back
Top