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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by DynamicArray

  1. DynamicArray

    Viewing Crystal Reports (8) within VB

    Ken and Balves, :-D Thanks for all the help! Its finally working properly, here's the code that did it: ' Set the report and connect to the server Set report = crxApplication.OpenReport("c:/path/aReport.rpt") report.Database.LogOnServer "p2sora7.dll&quot...
  2. DynamicArray

    Viewing Crystal Reports (8) within VB

    That sounded promising, but unfortunately it didn't work (you've guessed it, 'Server has not yet been opened'). Here are the parameters I have set (replaced for obvious reasons): (In Crystal Reports) Dll used: pdsora7.dll (the Crystal Oracle driver didn't work) Server Type: Oracle Server Server...
  3. DynamicArray

    Viewing Crystal Reports (8) within VB

    Ken, I have tried pdsora7.dll already, and it gives the 'Server has not yet been opened' error! DynamicArray
  4. DynamicArray

    Viewing Crystal Reports (8) within VB

    The reports are currently using pdsora7.dll We can launch reports from VB, but only if they have saved information, and only using: Set report = crxApplication.OpenReport("Cancellations By Product.rpt") report.Database.Tables(1).SetLogOnInfo "myServer&quot...
  5. DynamicArray

    Viewing Crystal Reports (8) within VB

    Ken, I've tried LogonServer, LogonServerEx (each with and without DSNs) and SetLoginInfo, and all say 'Error detected by database DLL' (using p2sodbc.dll) or 'Server has not yet been opened' (using pdsora7.dll - from the CR designer). How do I know whether I need LogonServer or LogonServerEx...
  6. DynamicArray

    Viewing Crystal Reports (8) within VB

    Ken, I'm trying to use the Report Designer Component with a .rpt file, as described in your Crystal/VB Quick Reference. I'm trying to connect directly to the Oracle 8i database through ODBC. Regards, DynamicArray
  7. DynamicArray

    Viewing Crystal Reports (8) within VB

    Hi, Thanks for the suggestions, unfortunately I'm still getting errors. Using the .LogonServer method, an error message opens that says 'Server has not yet been opened'. Using the .SetLoginInfo method, I can enter Crystal parameter values (sounds more hopeful), but when I continue from that...
  8. DynamicArray

    Viewing Crystal Reports (8) within VB

    Oops, forgot to add the error that was produced by the previous code! Run-time eror '-2147192179 (8004728d)'; Error detected by database DLL. I'm not sure if I've got the right dll, but I've tried using odbc32.dll, and that gives an error message that says it can't find odbc3d.dll (I can't...
  9. DynamicArray

    Viewing Crystal Reports (8) within VB

    I've got a similar problem, with VB6, Oracle8i, and Crystal Reports 8. I've tried to connect to the database using the following: report.Database.SetDataSource "Provider=OraOLEDB.Oracle.1;Password=MyPassword;Persist Security Info=True;User ID=MyUsername;Data Source=MyServer", which...

Part and Inventory Search

Back
Top