Crystal Report Viewer Error

G

Guest

I am getting "Error Creating Control" when I insert a CrystalReportViewer onto a VB .NET web page form. I have just installed this VS .NET upgrade from VS v6 and this is the first time I have tried to use it. I am walking through a tutorial but I cannot determine why I am getting this error. If I hover over the control it says "Failed to create designer CrystalDecisions.VSDesigner ...." I have checked for updates to my VS installation and have gone to Crystal Decision and downloaded and installed the latest "Hot Fixes" for Crystal Reports. Does anyone know what I should do next

Thanks for the help.
 
C

CJ Taylor

You are referencing the incorrect version in your toolbox.... tahts the
problem I came across.


jkbliss said:
I am getting "Error Creating Control" when I insert a CrystalReportViewer
onto a VB .NET web page form. I have just installed this VS .NET upgrade
from VS v6 and this is the first time I have tried to use it. I am walking
through a tutorial but I cannot determine why I am getting this error. If I
hover over the control it says "Failed to create designer
CrystalDecisions.VSDesigner ...." I have checked for updates to my VS
installation and have gone to Crystal Decision and downloaded and installed
the latest "Hot Fixes" for Crystal Reports. Does anyone know what I should
do next?
 
A

Ayaz Ahmed

Hello,


Try This code.


Private Sub MenuItemchartofaccount_Click(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles MenuItemchartofaccount.Click
Dim path As CRchartofaccount
path = New CRchartofaccount()
CrystalReportViewer1.ReportSource = path
CrystalReportViewer1.RefreshReport()
CrystalReportViewer1.Show()
End Sub


Thanks,


Warm Regards,

Ayaz Ahmed
Software Engineer & Web Developer
Creative Chaos (Pvt.) Ltd.
"Managing Your Digital Risk"
http://www.csquareonline.com
Karachi, Pakistan
Mobile +92 300 2280950
Office +92 21 455 2414
 
G

Guest

So what is the actual fix. I had a similar problem after running a registry cleanup program.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top