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 menazbk

  1. menazbk

    How to sort records dynamically at runtime in crystal reports?

    Thank you very much for your fast reply. I would like to know if using the CRAXDRT.ReportClass class instead of the CrystalDecisions.CrystalReports.Engine.ReportDocument class in VB .NET would not cause any problems. Thank you in advance
  2. menazbk

    How to sort records dynamically at runtime in crystal reports?

    I am using VB .NET to view crystal reports in the crystal report viewer activeX control, and I am using the CrystalDecisions.CrystalReports.Engine.ReportDocument class to load reports dynamically at runtime and add conditions and sorting options at runtime too. I use the record selection formula...
  3. menazbk

    Passing datasource name as a parameter when opening a report from ASP

    I have tried without the DSN but still it is not working. I downloaded and ran the fixing bugs exe and zip files from http://support.crystaldecisions.net/library/kbase/articles/c2007581.asp but still it does not work. I am logging with the machine Administrator account, so I don't think it is...
  4. menazbk

    Passing datasource name as a parameter when opening a report from ASP

    I have also tried: crtable.SetLogonInfo "DSN", "DBName", cstr(userid), cstr(password), but also it didn't work. And in my case I won't be able to connect natively because I am using a VC++ COM object which deals with different types of database engines, and all I can get...
  5. menazbk

    Passing datasource name as a parameter when opening a report from ASP

    Thank you Hattusas. I used the following code in a file names rptserver.asp: If Not IsObject (session("oApp")) Then Set session("oApp") = Server.CreateObject("Crystal.CRPE.Application") End If If IsObject(session("oRpt")) Then Set...
  6. menazbk

    Passing datasource name as a parameter when opening a report from ASP

    I use the CRViewer activeX to open reports from ASP and VBScript: Dim webBroker, webSource Set webBroker = CreateObject("WebReportBroker.WebReportBroker") Set webSource = CreateObject("WebReportSource.WebReportSource") webSource.ReportSource = webBroker webSource.URL =...
  7. menazbk

    How to open crystal reports from ASP

    Use the CRViewer activeX to open reports from ASP and VBScript: Dim webBroker, webSource Set webBroker = CreateObject("WebReportBroker.WebReportBroker") Set webSource = CreateObject("WebReportSource.WebReportSource") webSource.ReportSource = webBroker webSource.URL =...

Part and Inventory Search

Back
Top