473,320 Members | 1,821 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

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 10909
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

"kimiraikkonen" <ki*************@gmail.comwrote in message
news:15**********************************@h11g2000 prf.googlegroups.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

"kimiraikkonen" <kimiraikkone...@gmail.comwrote in message

news:15**********************************@h11g2000 prf.googlegroups.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

"kimiraikkonen" <ki*************@gmail.comwrote in message
news:32**********************************@s27g2000 prg.googlegroups.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.comwrote in message

news:15**********************************@h11g200 0prf.googlegroups.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
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...
1
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...
0
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...
2
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...
0
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...
0
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
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...
4
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:...
1
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
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
0
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you

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.