473,790 Members | 3,185 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

HELP: Cannot print in 64bit system(crystal reports)

Hi Everybody,

Our reports works well on every machine but not on 64bit systems.
We can view the report but when we press print button it does nothing, it
just stay there and prompt nothing, even no exceptions.

Even it does not execute the test code we wrote:
Dim pd As New PrintDialog
pd.ShowDialog()

Please help me, as we are stuck on this issue.
This is behaving strange only in 64bit systems.
We are using framework 2.0.

Any help would be appreciated.

Thanks, Neetu
Jan 14 '08 #1
5 10942
On Jan 14, 6:30*pm, "Neetu" <Ne...@nospaml. comwrote:
Hi Everybody,

Our reports works well on every machine but not on 64bit systems.
We can view the report but when we press print button it does nothing, it
just stay there and prompt nothing, even no exceptions.

Even it does not execute the test code we wrote:
Dim pd As New PrintDialog
pd.ShowDialog()

Please help me, as we are stuck on this issue.
This is behaving strange only in 64bit systems.
We are using framework 2.0.

Any help would be appreciated.

Thanks, Neetu
Have you installed 32-bit framework instead of 64-bit accidently?

I think that is the correct .net 2.0 for 64-bit systems:
http://www.microsoft.com/downloads/d...displaylang=en

and in which platform was the application written? 64 or 32-bit? There
may be an incompatibility because of different platforms.

Hope this helps.
Jan 14 '08 #2
We did install 64bit framework.
All program works fine, even the report display properly, only when you
click the print button on the crystal reports it does nothing.

Any idea.

Thanks, Neetu

"kimiraikko nen" <ki************ *@gmail.comwrot e in message
news:15******** *************** ***********@h11 g2000prf.google groups.com...
On Jan 14, 6:30 pm, "Neetu" <Ne...@nospaml. comwrote:
Hi Everybody,

Our reports works well on every machine but not on 64bit systems.
We can view the report but when we press print button it does nothing, it
just stay there and prompt nothing, even no exceptions.

Even it does not execute the test code we wrote:
Dim pd As New PrintDialog
pd.ShowDialog()

Please help me, as we are stuck on this issue.
This is behaving strange only in 64bit systems.
We are using framework 2.0.

Any help would be appreciated.

Thanks, Neetu
Have you installed 32-bit framework instead of 64-bit accidently?

I think that is the correct .net 2.0 for 64-bit systems:
http://www.microsoft.com/downloads/d...displaylang=en

and in which platform was the application written? 64 or 32-bit? There
may be an incompatibility because of different platforms.

Hope this helps.
Jan 15 '08 #3
On Jan 15, 4:44 pm, "Neetu" <Ne...@nospaml. comwrote:
We did install 64bit framework.
All program works fine, even the report display properly, only when you
click the print button on the crystal reports it does nothing.

Any idea.

Thanks, Neetu

"kimiraikko nen" <kimiraikkone.. .@gmail.comwrot e in message

news:15******** *************** ***********@h11 g2000prf.google groups.com...
On Jan 14, 6:30 pm, "Neetu" <Ne...@nospaml. comwrote:
Hi Everybody,
Our reports works well on every machine but not on 64bit systems.
We can view the report but when we press print button it does nothing, it
just stay there and prompt nothing, even no exceptions.
Even it does not execute the test code we wrote:
Dim pd As New PrintDialog
pd.ShowDialog()
Please help me, as we are stuck on this issue.
This is behaving strange only in 64bit systems.
We are using framework 2.0.
Any help would be appreciated.
Thanks, Neetu

Have you installed 32-bit framework instead of 64-bit accidently?

I think that is the correct .net 2.0 for 64-bit systems:http://www.microsoft.com/downloads/d...d=b44a0000-acf...

and in which platform was the application written? 64 or 32-bit? There
may be an incompatibility because of different platforms.

Hope this helps.
It maybe in your code or control's behaviour under 64-bit system.

Does you app behave in same way in "all" 64-bit systems?
Jan 15 '08 #4
We do not have any of our code on the print button. It's all Microsoft
framework code.
Yes it behaves same on all the 64bit systems.

Thanks, Neetu

"kimiraikko nen" <ki************ *@gmail.comwrot e in message
news:32******** *************** ***********@s27 g2000prg.google groups.com...
On Jan 15, 4:44 pm, "Neetu" <Ne...@nospaml. comwrote:
>We did install 64bit framework.
All program works fine, even the report display properly, only when you
click the print button on the crystal reports it does nothing.

Any idea.

Thanks, Neetu

"kimiraikkonen " <kimiraikkone.. .@gmail.comwrot e in message

news:15******* *************** ************@h1 1g2000prf.googl egroups.com...
On Jan 14, 6:30 pm, "Neetu" <Ne...@nospaml. comwrote:
Hi Everybody,
Our reports works well on every machine but not on 64bit systems.
We can view the report but when we press print button it does nothing,
it
just stay there and prompt nothing, even no exceptions.
Even it does not execute the test code we wrote:
Dim pd As New PrintDialog
pd.ShowDialog()
Please help me, as we are stuck on this issue.
This is behaving strange only in 64bit systems.
We are using framework 2.0.
Any help would be appreciated.
Thanks, Neetu

Have you installed 32-bit framework instead of 64-bit accidently?

I think that is the correct .net 2.0 for 64-bit
systems:http://www.microsoft.com/downloads/d...d=b44a0000-acf...

and in which platform was the application written? 64 or 32-bit? There
may be an incompatibility because of different platforms.

Hope this helps.

It maybe in your code or control's behaviour under 64-bit system.

Does you app behave in same way in "all" 64-bit systems?

Jan 15 '08 #5
Neetu,

Two things come to mind.

1. Are you compiling with the configuration "Any CPU"? If so, try building
it for 32 bit (x86 platform). This helped us in an issue, not with Crystal
Reports, but a different product that was only written for 32 bit.

2. Do you make any assumptions about the location of files or registry keys?
There is an issue referred to as virtuallization on 64 bit OS's, where
registry keys and (at least) the program files folders are separated by 32
bit versus 64 bit applications.

I hope this helps.

"Neetu" wrote:
Hi Everybody,

Our reports works well on every machine but not on 64bit systems.
We can view the report but when we press print button it does nothing, it
just stay there and prompt nothing, even no exceptions.

Even it does not execute the test code we wrote:
Dim pd As New PrintDialog
pd.ShowDialog()

Please help me, as we are stuck on this issue.
This is behaving strange only in 64bit systems.
We are using framework 2.0.

Any help would be appreciated.

Thanks, Neetu
Jan 16 '08 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
2525
by: Raghuraman | last post by:
Hai I have a designed Crystal report .rpt file which has 4 access tables .. After designing the report i put a parameter field which filteres the desired records quite naturally. Every thing works fine in the crystal report design time as well as in the preview asking parameters .. But if i call it thru my VB form it works nice after removing the parameteres.
1
2646
by: brian | last post by:
Does anyone know of good resources to help with automating deployment of Crystal Reports 9.0. I have the 9.0 developers edition and want to internally email reports to salesman and have reports printed out. Thanks
0
1467
by: shanthsp2002 | last post by:
Hi friends, can any body plzz help me in registring the crystal reports related dlls, and one more thing is werther we need to include Crystal_Database_Access2003.msm Crystal_Database_Access2003_enu.msm Crystal_Managed2003.msm etc ... as we do with .net 2003 application
2
14467
by: Rod | last post by:
We've got an old VB6 application which has 9 Crystal Reports it can print. These 9 reports are considered by our users to be in essence one "report", in the sense that they are all related and they cannot make their business plans without all 9 reports. However, they really are 9 separate reports, 7 of which have sub-reports in them. One of my colleagues has been working on converting them from the VB6 app, to .RPT files which can be...
0
263
by: DBC User | last post by:
Hi Guys, I am trying to help one of my friends so I don't have much information. It looks like they have 2 servers, one server for crystal enterprise and another one for web server. I would like to know how these two could have setup so that an ASP.Net can talk to crystal reports to generate reports in asp.net. Any help? I never worked on Crystal Reports so I would like to get a heads up before I dwelve into to
0
1749
by: rajeev1979 | last post by:
hi i am new to asp.net when i press the print button in crystal report it will give error "object does not support thi method"
6
4895
by: Miro | last post by:
I can run an exe ( and its install ) i have created on my machine. The exe has a button that populates a dataset and then shoots it to a crystal report. But... Installing the setup.exe on my other pc, and running it I get an error. The Dataset loads properly, but when the button is pushed to view the report I get this error: ************** Exception Text **************
4
3316
by: Miro | last post by:
<i have also added this reply to the other newsgroup - now that I have realizd ( and assuming ) it is not a localized error directly to vb.> I have found this link on the website: https://www.sdn.sap.com/irj/sdn/businessobjects-downloads ..NET Utility CR 2008 Merge Modules for the .NET Framework ZIP 74.716 Windows English 12.03.2008 and it states:
1
1273
by: NitinSawant | last post by:
Dear, How to add links in crystal reports, e.g. I hav two reports A & B, I want to link them, A will link to B and B will link to B, also A will post parameters to report B
0
9666
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10419
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10201
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9023
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7531
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6770
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5424
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5552
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4100
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.