Crystal Reports 32 Bit Version

Posted By admin On 03/11/19
Crystal Reports 32 Bit Version Rating: 4,8/5 6460 votes
  1. Crystal Reports 32 Bit Version 0 8 Gb
  2. Crystal Reports 32 Bit Version Download
  3. Crystal Reports 64 Bit Download
  4. Crystal Reports 32 Bit Version Of Chrome
  5. Crystal Reports 64 Bit Version
Active6 years, 2 months ago

I'm currently using VS 2012 on a 64-bit PC, using Crystal Reports for VS 2012.

After installing Crystal Reports for VS 2012, I noticed there are 2 main folders:

  • CommonSAP BusinessObjects Enterprise XI 4.0win64_x64
  • CommonSAP BusinessObjects Enterprise XI 4.0win32_x86

The app that I'm going to deploy can be deployed on both 32-bit and 64-bit PCs, so which Crystal Reports DLLs should I reference? x86 or x64?

The SAP Crystal Report is the reporting tool that used to design reports both in web and desktop environment. The Sap Crystal report has gone through changes in name quite a few times and the current version is named as SAP Crystal Reports, developer version for Microsoft Visual Studio. Jul 18, 2019  Download Crystal Reports for free. SAP Crystal Reports software enables you to easily design interactive reports and connect them to virtually any data source. The following versions: 14.0, 12.2 and 12.0 are the most frequently downloaded ones by the program users. Free download crystal reports 32 bit. Crystal reports 9 download.

Or do I need to have 2 separate solutions, one with the x86 dlls referenced, and the other with x64?

Update:

Crystal Reports 32 Bit Version 0 8 Gb

What I did was to reference the x86 dlls when developing, and install the x86 redistributable version of crystal reports on all my deployment machines, regardless of its architecture. Hope that helps some of you guys out there

Null Reference
Null ReferenceNull Reference
5,22333 gold badges91 silver badges157 bronze badges

1 Answer

I know this isn't technically an answer to your question, but since it still remains unanswered even after having set a bounty, I thought I might suggest it anyway…

You might re-consider whether you really need a 64-bit version of your application. Most line-of-business applications (which I can assume is what you're building, since you're generating reports from it) do not really benefit from being 64-bit.

You can build and distribute only a 32-bit version (x86) and it will still run on all machines, regardless of whether they are running a 32-bit or 64-bit version of Windows. This is because all 64-bit versions of Windows include a special subsystem (Windows-on-Windows, or WOW64) that runs 32-bit code. It's entirely seamless, and there are virtually no compatibility problems to speak of.

Lots of applications are deployed this way. Visual Studio itself is an excellent example: it's still 32-bit code, but runs fine even on 64-bit versions of Windows, thanks to WOW64.

So to do this, you just set your project to target x86 platforms, and reference 32-bit DLLs exclusively. Since you'll only be building a single binary, this would greatly simplify development and distribution efforts, not only in terms of figuring out which DLLs to reference, but also the amount of code you need to test and the distribution process itself.

A soundfont created by sampling a Bosendorfer Piano. Conclusion SoundFonts are a great way to add diversity to your music production. With free plugins such as EFM SF Synth 2 or Fruity Loops’ very own in house SoundFont sampler, it's possible to reproduce many sounds ranging from an orchestra to your favorite old school video game. Free game. If you want to use this free SoundFont, you must agree to these terms: - You may not sell or receive money for this SoundFont, in whole or in parts. You may not rename the SoundFont, convert it to other formats, or upload it to a web site without the author's permission. Soundfonts are free, can contain hundreds of sounds from orchestral to drums and evoke the past. We’ve collected an ultimate list of some of the best we could find from around the web so you don’t have to. You need a VST SoundFont player but most software like FL Studio and Ableton Live already come with one.

If you write good code that follows standard idioms and recommended practices, adding 64-bit support later (if it ever does prove to be of some benefit for your case) would be a fairly trivial operation. The .NET Framework abstracts away platform-specific differences extremely well; that's how they can offer an 'Any CPU' targeting option.

Crystal report runtime 64 bit

Aside from that, if I am allowed to speculate (because I have no particular experience with Crystal Reports), I imagine that the public interface is identical for both the 32-bit and 64-bit DLLs.

In that case, you can just reference the 32-bit version for your development work, and then configure your build script to pick the correct version of the DLL depending on whether you're building a 32-bit or 64-bit binary.

Naturally, the installer would need to make the same choice, either during the install (if you're using a unified installer) or when you build the installer itself (if you have separate 32-bit and 64-bit installers).

Cody Gray

Crystal Reports 32 Bit Version Download

Crystal Reports 64 Bit Download

Cody Gray

Crystal Reports 32 Bit Version Of Chrome

201k38 gold badges405 silver badges488 bronze badges

Crystal Reports 64 Bit Version

Not the answer you're looking for? Browse other questions tagged .netdeploymentcrystal-reports64-bit32bit-64bit or ask your own question.