really soorry for that... i am using crystal report X1 release 2 and vs 2005.
VB Net Developer
Posts
-
Convert pull method report to push [modified] -
Convert pull method report to push [modified]I have report that is made in pull method... Now i want to use the same report in push method.. so that i dont have to redesing the report that i already have... \ Is there anyway i can do this.. i am using crystal report XI release 2 version to generate report in VS 2005 using vb.net code.
modified on Tuesday, June 1, 2010 9:07 AM
-
Database logon error for crystal report...Still i get the same error....
-
Database logon error for crystal report...I am saving crystal report as pdf in my machine using pull method.... it was working fine till i added refresh() as it was not refreshing the data.. i am gettin error as Database Logon failed and in inner exception i am getting CrystalDecisions.ReportAppServer.DataSetConversion.... Below is my code...pls help Dim rptExcel As New ReportDocument rptExcel.Load("MrRpt.rpt") rptExcel.ExportOptions.ExportDestinationType = ExportDestinationType.DiskFile rptExcel.ExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat Dim objOptions11 As DiskFileDestinationOptions = New DiskFileDestinationOptions objOptions11.DiskFileName = strExportFile rptExcel.ExportOptions.DestinationOptions = objOptions11 rptExcel.Refresh() rptExcel.Export()//Here it throws error rptExcel.Dispose()
-
pull method of crystal report..promptin for password.I am using pull method for viewing a crystal report. It works fine but it doesnt refresh the data..it still shows the old data. so i wrote some code to refresh the data..but it is prompting me for password...wen we give password it works..but even wen i give that password in code, it is prompting.. below is my code Dim rptDoc As New ReportDocument rptDoc.Load("test.rpt") ApplyInfo(rptDoc) CrystalReportViewer1.ReportSource = rptDoc Public Sub ApplyInfo(ByRef _oRpt As CrystalDecisions.CrystalReports.Engine.ReportDocument) Dim oCRDb As CrystalDecisions.CrystalReports.Engine.Database = _oRpt.Database Dim oCRTables As CrystalDecisions.CrystalReports.Engine.Tables = oCRDb.Tables Dim oCRTable As CrystalDecisions.CrystalReports.Engine.Table Dim oCRTableLogonInfo As CrystalDecisions.Shared.TableLogOnInfo Dim oCRConnectionInfo As New CrystalDecisions.Shared.ConnectionInfo() oCRConnectionInfo.DatabaseName = _dbName oCRConnectionInfo.ServerName = _serverName oCRConnectionInfo.UserID = _userID oCRConnectionInfo.Password = _passWord For Each oCRTable In oCRTables oCRTableLogonInfo = oCRTable.LogOnInfo oCRTableLogonInfo.ConnectionInfo = oCRConnectionInfo oCRTable.ApplyLogOnInfo(oCRTableLogonInfo) Next End Sub
-
cross tab Crystal report to suppress column when no dataI am developing a cross tab crystal report in vb.net.... I want to suppress entire coulmn based on some condition... format formula editor and all, just suppresses the field and leaves a blank space. I dont even want to remove that blank coulmn also...could any one help
-
I want my URL to be static for eg "http://project1"It shows an error that the virtual path "http://project1" doesnt exist
-
I want my URL to be static for eg "http://project1"I wamt the URL of my project to be "http://project1" irrespectives of the pages u visit in the project...Howis it possible...
-
How to pivot a DataGridI have a DataSet i want to make one cloumn as pivot ...Is there any solutin
-
To get son and all grandsonsparent son A B A C A D D E D F D G G I G J i blank j blank b blank c balnk I need a query to get son and grandson, grandgrand sons (till Entire generation) …. Of ‘A’…..
-
Session between projects in a solutionThanks a lot...That was excatly the problem ........Now i am getting sessions between projects
-
Session between projects in a solutionIt is in same virtual directory itself
-
Session between projects in a solutionI want to use session between projects(diff dll) in the same soultion.. Eg Session["user"] = hello I am getting it when i use server.transfer Not getting when it is Respnse.Redirect
-
Copy files from one folder to anotherThis works perfectly fine...Thanks a lot
-
Copy files from one folder to anotherThanks a lot....That was my requirement i will try it outt
-
Copy files from one folder to anotherCould you please explain wat is going on
-
Copy files from one folder to anotherI need to copy all files from one file to another..Could someon help
-
Download Attachment from Email using VB,NET [modified]i need to download Attachment from Email in Outlook using VB,NET. Could someone help -- modified at 9:14 Monday 15th October, 2007