Crystal Report Viewer Error

  • Thread starter Thread starter Guest
  • Start date Start date
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.
 
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?
 
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
 
So what is the actual fix. I had a similar problem after running a registry cleanup program.
 
Back
Top