Question : Crystal Reports in C# App built on 32 bit Windows throws error on 64 bit Windows

Hello Experts,

I have a C# Application which uses Crystal Reports. This APP was built in VS 2005 and Access SQL Server 2005 on 32 bit Windows XP and it runs fine in that Environment...

When I try to run the App on 64 bit Windows 7, The Application works fine except for Crystal eEports. When I try to run a report the following exception is thrown:

---------------------------
Crystal Report Windows Forms Viewer
---------------------------
The type initializer for 'CrystalDecisions.CrystalReports.Engine.CRPE' threw an exception.
---------------------------

Does anyone know what is going on here??

Thanks!

Answer : Crystal Reports in C# App built on 32 bit Windows throws error on 64 bit Windows

you can set visibility through style

document.getElementById('idofelement').style.display("none"); //hide element
document.getElementById('idofelement').style.display(""); //display element

css display will make the element invisible and also hide it from the page so elements will shift as if the element you hid was gone from the page

document.getElementById('idofelement').style.visibility("hidden"); //hide element
document.getElementById('idofelement').style.visibility("visible"); //display element

css visibility will make the item invisible, but it will still hold it's place on the page

for example if you had 3 images, and you used css display property to hide the middle image, the third image would move to be next to the first image, as if there was no 2nd image there. If you used visibility to hide the middle image, then the middle image would disappear and it would look like there was an empty space the size of the middle picture between pictures 1 and 3
Random Solutions  
 
programming4us programming4us