Crystal Report 8.5 Download Vb6
Hi,How add Crystal Report Version 11 in VB6. At present I have been using Crystal Ver 8.
Crystal Report 8.5 Runtime For Vb6 Download
I need to upgrade to Crystal Ver 8.5 or above to implement exporting rpt's to pdf. Now, I have installed CRystal report 11 Developer edition in my system and from VB i am not able to add Crystal Report control of version 11. Can anyone pls help.thanks,priyaHi Priya,I'm also having a simlar problem - using RDC in VB6 with CR8.5 was a breeze - but not so in CR11 - I simply can't get any Designers for CR11 in the VB6 environment.I wonder how it is possible.?I've read the Technical PDF that comes with CR11 but that too goes on saying all is possible using RDC and CR11 etc etc - but exactly how.I'm baffled - did you manage to get it done? Please let me know how. Will aprreciate your help verty much:)Thanks.Sailesh. Hi,Sailesh thanks for replying.
That is one of the specific reason.And these for Priya also.In CR XI you have Developer version only will allow you to deploy with VB.And in VB you have to follow these steps to run CRXI reports in VB1. In VB project properties go to Designer tab and select Crystal Reports 11 and in Controls tab select Crystal ActiveX Report Viewer Liberary 11.02. You will get one more tool box in tools window called Crystal Reports3. And write the code like this in the form load (or which event you want)Dim Report as New CrystalReport1CrystalActiveXReportViewer.ReportSource = Report.Application.OpenReport( Give Report Path )CrystalActiveXReportViewer.ViewReport4. Run the Application.Let me know if any queries.:cool.
Hi,Sailesh thanks for replying. That is one of the specific reason.And these for Priya also.In CR XI you have Developer version only will allow you to deploy with VB.And in VB you have to follow these steps to run CRXI reports in VB1. In VB project properties go to Designer tab and select Crystal Reports 11 and in Controls tab select Crystal ActiveX Report Viewer Liberary 11.02. You will get one more tool box in tools window called Crystal Reports3. And write the code like this in the form load (or which event you want)Dim Report as New CrystalReport1CrystalActiveXReportViewer.ReportSource = Report.Application.OpenReport( Give Report Path )CrystalActiveXReportViewer.ViewReport4.
Sap bw310 pdf deutsch. Run the Application.Let me know if any queries.:cool:hi,i couldn't find Crystal ActiveX Report Viewer Liberary 11.0 in vb6 reference, can you give me the craxdrt.dll and craxddrt.dll version 11.0. If you haven't gotten past this issue, I can sympathize with you. It took me many hours as well. The answer is actually in BizObjects Knowledgebase, but it isn't so obvious what to look for. Query their KB for ' OCX RDC' and find the technical paper ' Migrating from the OCX Control to the Crystal Reports 9 Report Designer Component (RDC)'.
The RDC is essentially unchanged from versions 9 thru version 11, which is what throws many off. Get the document and read around page 17 for sample code. I have all my reports pointing to a named data source or DSN.
Your VB program must also step through and assign the DSN to each table in the report. See sample code on page 44 of the document. I have 'professional' edition? And i read on vendor site that only developer edition can do application integration.does it make any sense?when i said about keys - it means developer key or general key - a reply mentioned in the Sailesh's reply.Hi Rajesh,Yes, I finally got the solution - actually during installation of CR11, I was using a registraion Key that was only for CR11 and not for Developer.
After unistalling entrire CR11 and re-installong agagin (with Developer Key), well.things couldn't be better. Simply start VB6 IDE and things behave just as they were in the CR8.5 days.Regards,Sailesh. I just want to share this because this works for me. Private Sub FormLoadDim report As New CRAXDDRT.reportDim sql As StringDim crapp As New CRAXDDRT.ApplicationDim tbl As CRAXDDRT.DatabaseTable'I modified the query for the report by specifying the WHERE clausesql = 'SELECT.WHERE.' With crapp'I already set the username,password,server parameters in the DSN itself.LogOnServer 'crdbodbc.dll', 'SampleDSN'Set report =.OpenReport(App.Path & 'Report1.rpt')report.Database.LogOnServer 'crdbodbc.dll', 'SampleDSN'report.SQLQueryString = sqlEnd WithWith CRViewer1.Refresh.ReportSource = report.ViewReportEnd WithEnd SubPrivate Sub FormresizeCRViewer1.Top = 0CRViewer1.Left = 0CRViewer1.Height = ScaleHeightCRViewer1.Width = ScaleWidthEnd Sub.