The problem is i have installed sap run time engine for crystal reports in VS2010, yet i could not open the crystal report file in VS 2010. I Have no clue what the problem is. Is there any other file which i need to install except the run-time engine if so please notify and give me the link for it.
Thank you.
Usually you need to reference the following DLLs when working wth CR in .NET:
using CrystalDecisions.CrystalReports.Engine;
using CrystalDecisions.Shared;
You need to install SAP Crystal Reports for Visual Studio and not just the runtime engine.
Related
I am using VS 2013 and SQL SERVER 2014 and I am trying to use entity framework to connect to the DB from VS 2013. I am getting test connection succeeded when adding the Entity data model but getting the above error.
Error :Could not load file or assembly 'Microsoft.SqlServer.Management.Sdk.Sfc, Version=11.0.0.0'
System cannot find the file specified
I tried so many solution, I re-installed SQLSysClrTypes.msi,
SharedManagementObjects.msi, DB2OLEDBV5_x64.msi and vcredist_x64.exe to resolve this ; but it did n't works.
Could any one please suggest me solution?
Thanks,
Saloni
Just to stamp as the answer, let me rewrite in the answer block from my comments.
Install the right Microsoft.SqlServer.Management.Sdk.Sfc version 11's SharedManagementObjects.msi from http://www.microsoft.com/en-us/download/details.aspx?id=35580, because it seems like the entity is using the previous SQL Server (2012).
Problem: (Sql server 2012) This issue happens when assembly Microsoft.SqlServer.management.sdk.sfc version 11.0.0.0 not found by visual studio.
Solution: just go to http://www.microsoft.com/en-us/download/details.aspx?id=35580 and download:
ENU\x64\SharedManagementObjects.msi for X64 OS or
ENU\x86\SharedManagementObjects.msi for X86 OS,
then install it, and restart visual studio.
I am working on a Visual Studio 2010 Solution. This solution is a web-site comprised of multiple web apps (using JavaScript, ASP, etc.).
Every time I compile, I get an error message stating that my DotConnect trial has expired.
Instead of forking out the cash, I would like to use the MySQL Connector / Net and replace all instances of DotConnect with instances of MySQL Connector / Net.
Can anyone help me with this task please?
Ended up having to install everything on entirely new computer. Then I imported the source code files and did a find/replace to replace all references from the old connector to the new one. Turns out visual studio is picky. Depending on your 'References' you may have issues if your version of MS Office doesn't match the source code.
Good luck if you're having the same issue.. smh :/
I started learning C# a week ago. Today I was trying to install the System.Data.SQLite plugin or whatever that is from this page of the SQLite offical website.
But after I installed it I couldn't see it in:Project->Add Reference->.NET[tab].
I am using Microsoft Visual Studio 2010. I really need to make the integration with SQLite for my application.
Thanks a lot.
Best Regards,
Me
During setup, have you ticked the checkbox that said something like "Install assemblies into global assembly cache"? I believe it is unchecked by default.
Try referencing the library using the Browse tab instead if you can't find it in the GAC.
(I'm running Windows7 and using Visual Studio 2010.)
I'm using ClamAV in a .NET Azure project, and I'm running into side-by-side errors whenever I run clamd.exe, either through my code or by running clamd.exe on it's own.
In Visual Studio 2010 I am getting the error:
Win32Exception was unhandled The application has failed to start
because its side-by-side configuration is incorrect. Please see the
application event log or use the command-line sxstrace.exe tool for
more detail
And in Event Viewer I get:
Activation context generation failed for
"C:\Users\pconerly\code\AntiVirus_source\WorkerRole\clamav\clamd.exe".
Dependent Assembly
Microsoft.VC80.CRT,processorArchitecture="x86",publicKeyToken="1fc8b3b9a1e18e3b",type="win32",version="8.0.50727.6195"
could not be found. Please use sxstrace.exe for detailed diagnosis.
When I searched for "8.0.50727.6195" it led me to the 2005 redist, so I downloaded it
http://www.microsoft.com/download/en/details.aspx?id=3387
After a restart I am still getting the side-by-side error. Additionally, I think that the redist installer is not completing it's install-- like it's seeing visual studio 2010 and saying "oh, that's good enough, no need for me to install". I haven't tried uninstalling 2010 and using 2005, because the rest of my Dev team is using VS 2010.
What's the deal? How can this be fixed? I'm ready to pull out my hair.
The link Timores posted is the update for Visual Studio. The actual redistributable package is this:
http://www.microsoft.com/en-us/download/details.aspx?id=26347
The version you mention is actually at found here
Microsoft Visual Studio 2005 Service Pack 1 MFC Security Update
Timores is right: the redist should be this one, which is related to this KB entry
As you can see there, msvcr80.dll has been updated to version 8.0.50727.6195.
It is the "security update" of the "SP1" of the 2005 C++ runtime..
Your exe probably requires (through an internal manifest) that specific version.
If it is not found on the system (there's a lot of places searched for) nor in the current folder (with a suitable manifest aside) it won't load the exe since it is not able to "activate the context", that is load the specific DLL required in the manifest.
I had similar issues when my system got updated (windows updates) and the newly compiled EXEs were not working with an old-versioned runtime placed on the same folder.
I had to update msvcr80.dll and its manifest (which I found deep in \windows\winsxs) to make everything work.
Context activation is a tricky matter, anyway :)
HTH
I am trying to create a Setup Routine for my application which uses Crystal Reports SAP. I get 4 errors durring the build stating that the following files are missing:
6248: Could not find dependent file CrystalDecisions.CrystalReports.Engine.dll
6248: Could not find dependent file CrystalDecisions.ReportSource.dll
6248: Could not find dependent file CrystalDecisions.Shared.dll
6248: Could not find dependent file CrystalDecisions.Windows.Forms.dll
I've downloaded the [CRforVS2010_sp1_mm.zip] directly from Business Objects and copied the [CRRuntime_13_0_1.msm] file into my [C:\Program Files\InstallShield\2011\Modules\i386] directory. I restarted the installer and then I selected the [SAP Crystal Reports runtime engine for .Net Framework 4] in the [Redistributables] tab. I don't know what else I need to do.
I am running the following:
Visual Studio 2010 (VB.Net)
InstallShield Express 2011
Help!
Looks like an answer is Here and Here
old version of the MS VC++ SP1 Redistributable Prerequisite file.