 |
|
 |
Hey i din't find those 4 files mentioned in the merge modules folder. So where can i get those files adn what is the process to get those 4 files?
|
| Sign In·View Thread·PermaLink | 2.00/5 (1 vote) |
|
|
|
 |
|
 |
Hello, I have a problem with crystal reports. According to the report parameter it is possible that the report does not find data.In this case an empty report viewer window is displayed. I want to avoid that. Is there a way to check the report if it find data or not?
galia
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
set visible property of report viewer to false by default, set it to true when there is some data e.g Suppose you've fetched data into a dataset "ds" now you can use following simple logic.
if(ds.Tables[0].Rows.count > 0) reportviewer.visible = true; else reportviewer.visible = false;
knowledge can't be stolen, more you deliver the Wealthier you are.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Is there any property that can tell me if my report is empty? I don't wanna add so mach code to all of my reports.
I'm looking for a property that I can change in the design.
galia
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Sure, you can use suppress property to hide sections when there is no data. The Suppress property hides a section when you run the report. This property can be applied absolutely, or conditionally using a formula. This is useful for writing form letters. For example, in a form letter, you might create two Details sections: one to suppress when sales are over $X and one to suppress when sales are under $X. Right click the section you want to hide and select "Suppress (No Drill Down)"
knowledge can't be stolen, more you deliver the Wealthier you are.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Can I use this property to hide all the report? I just dont wanna see the report if no information are bach with the dataset,but I can't add the code that checks it.
galia
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Can I import an existing form that is in a PDF file into a Crystal report on my web site?
If this is possible, I would then like to populate the form with data from a data base that is on my web site.
Can this be done?
|
| Sign In·View Thread·PermaLink | 2.00/5 (1 vote) |
|
|
|
 |
|
 |
Hi there i hope you can assist me on this well i have developed a file management software in VB 2005 which uses crystal reports 10 whenever i deploy the application i got an error that some assemblies were missing which i went back and added them manually.These are the assemblies names CrystalDecisions.CrystalReports.Engine.dll CrystalDecisions.ReportSource.dll CrystalDecisions.Shared.dll CrystalDecisions.Windows.Forms.dll But then after this i ran the application and now it shuts down anytime i run the reports. It may be simple but am totally stuck please help
Salim Kimanthi
|
| Sign In·View Thread·PermaLink | 1.50/5 (2 votes) |
|
|
|
 |
|
|
 |
|
 |
There is no difference whether you use vs 2003 or 2005 except for 2005 this AAC60-G0CSA4B-V7000AY license key is used. Hoping that the problem will be solved now.
knowledge can't be stolen, more you deliver the Wealthier you are.
|
| Sign In·View Thread·PermaLink | 2.60/5 (2 votes) |
|
|
|
 |
|
 |
Hi, Great article.
I followed the steps and didn't have any build errors, was able to deploy my app to another computer, however....when I execute my report, I get an error message from the Crystal Report Windows Forms Viewr: 'Failed to open the connection. C:\DOCUME~1\lauaa\LOCALS~1\Temp\[38479E12-93E0-4F6e-g96a-1016EA9163E7].rpt'
I know it finds the report, because the report prompts the user for the parameters. My report tables are located in a password protected SQL server and I use the following code to login:
Dim crReportDocument As EnctFormClinic Dim crDatabase As Database Dim crTables As Tables Dim crTable As Table Dim crTableLogOnInfo As TableLogOnInfo Dim crConnectionInfo As ConnectionInfo
Public Sub DisplayReport(ByVal strServerName As String, ByVal strDatabaseName As String, ByVal strUserID As String, ByVal strPassword As String) crReportDocument = New EnctFormClinic crConnectionInfo = New ConnectionInfo With crConnectionInfo .ServerName = MASONSQL .DatabaseName = PubHlth .UserID = g_UserID 'const .Password = g_Password 'const End With crDatabase = crReportDocument.Database crTables = crDatabase.Tables For Each crTable In crTables crTableLogOnInfo = crTable.LogOnInfo crTableLogOnInfo.ConnectionInfo = crConnectionInfo crTable.ApplyLogOnInfo(crTableLogOnInfo) Next crvEnctClinic.ReportSource = crReportDocument End Sub
I'm working in VB.NET 2003 and CR XI
Any thoughts? I've search for an answer to this for many hours and suggestions are greatly appreciated. Thanks.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
it seems to be missing connection information check whether you are using proper connection while designing as well as linking
knowledge can't be stolen, more you deliver the Wealthier you are.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hello, I have an asp.net project that contains a particular crystal report (done with Crystal Reports for Visual Studio .NET 2003 AAP50-GS00000-U7000RN). This web project was deployed in one computer, copied to another computers and registered in their respective IISs, it works good and shows the information appropriately in these stations(running IIS 5.1 on WinXP sp2 and 6.0 win2003), except in one computer running IIS 5.1 with WinXP Pro sp2(the report only shows the first half from left to right side, and the report itself is adjusting the width to the information shown). I debugged the application, the way it works is with a Push method, the dataset is loaded successfully, the code looks like this: SettlementRDS ds = CreateDataSet();/*loads a dataset into object ds, that inherits from System.Data.DataSet*/ Unified oReport = new Unified(); oReport.SetDataSource(ds); Note: This is just to mention the way I bind the information into the report. What I guess about this issue is the possibility of a missing configuration regarding crystal report in iis for this particular computer; i have reviewed as many things as i think without results. if any of you guys can help me with this, i will be greatly happy.
Thanks
Yasel.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hello Mr. Shahbaz
How r u? You have done a good job, and solved a big problem for a lot of other developers. I was also facing the same problem. Now I have find the solution.
Thanks
shah nawaz
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
I agree.
Thank you very much, it's just a pity that this solution isn't so transparent in the documentation!
I have seen hundreds of requests for help on this on subject on various forums, but this solution is especially good as you've taken the time to illustrate the steps to solve it.
Well done, and many thanks,
James.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
I also had problems with crystal reports deployment in the past, and i did exactly what you have said. Great. But you could said where obtain these msm file merge modules case i haven`t them yet (google it), and you can swap the sentences: "Go to the bin directory of your desired dot.net application (which is already build) and select the .exe file. This will add necessary references of all the assemblies required" and "Now Go to solution explorer and right click on Setup and select Add > Merge Module…" - they are wrong placed.
cya
-- modified at 7:25 Thursday 31st August, 2006
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
brother thank you very much for correction. As far as merge modules are concerned you can find them under program files > common files if you still can't , then check your visual studio installation options. thank you once again
knowledge can't be stolen, more you deliver the Wealthier you are.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
This is indeed a neat article. I was looking for a good deployment article and found this thanks
Thanks
Vikram http://www.vikramlakhotia.com/
|
| Sign In·View Thread·PermaLink | 2.00/5 (1 vote) |
|
|
|
 |