vs2010 and Stimulsoft.NET, installation problems!!!
-
- Posts: 4
- Joined: Wed Feb 22, 2012 5:15 pm
- Location: Italy
vs2010 and Stimulsoft.NET, installation problems!!!
Hello,
I installed Stimulsoft.NET Trial in Visual Studio 2010, but it gives me some problems.
I imported all dll files in my project from Stimulsoft's bin directory , but when I debug it ([C#] > this.StiWebReport1.Show();), there are problems with assembly...
Thanks in advance
I installed Stimulsoft.NET Trial in Visual Studio 2010, but it gives me some problems.
I imported all dll files in my project from Stimulsoft's bin directory , but when I debug it ([C#] > this.StiWebReport1.Show();), there are problems with assembly...
Thanks in advance
vs2010 and Stimulsoft.NET, installation problems!!!
Hello.
What are you trying to do with this code?
Thank you.
What problems do you have?pasluc7469 wrote:Hello,
I installed Stimulsoft.NET Trial in Visual Studio 2010, but it gives me some problems.
I imported all dll files in my project from Stimulsoft's bin directory , but when I debug it ([C#] > this.StiWebReport1.Show();), there are problems with assembly...
What are you trying to do with this code?
Thank you.
-
- Posts: 4
- Joined: Wed Feb 22, 2012 5:15 pm
- Location: Italy
vs2010 and Stimulsoft.NET, installation problems!!!
thanks for your prompt reply:biggrin:
I run visual studio 2010, and this is my page .aspx
... and this is the code-behind
.... and this is the error page
please, help me :grinder:
PS. when i write "this.StiWebReport1.Show();", the stimulsoft intellisense does not shows the method "Show"
thanks in advance.
I run visual studio 2010, and this is my page .aspx
Code: Select all
PROVA REPORT STIMULSOFT
Code: Select all
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Stimulsoft;
using WebApplication1;
namespace WebApplication1
{
public partial class stimulSoftReports : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
this.StiWebReport1.Show();
}
}
}
Code: Select all
Messaggio di errore del compilatore: CS0433: Il tipo 'Stimulsoft.Report.Web.StiWebReport' esiste sia in 'c:\Windows\assembly\GAC_MSIL\Stimulsoft.Report.Web\2011.3.1200.0__ebe6666cba19647a\Stimulsoft.Report.Web.dll' che in 'c:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\b37ee1d1\95fbf3d1\assembly\dl3\d1d4d87e\00624d6a_8aeccc01\Stimulsoft.Report.Web.DLL'
Errore nel codice sorgente:
Riga 222:
Riga 223: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Riga 224: private global::Stimulsoft.Report.Web.StiWebReport @__BuildControlStiWebReport1() {
Riga 225: global::Stimulsoft.Report.Web.StiWebReport @__ctrl;
Riga 226:
File di origine: c:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\b37ee1d1\95fbf3d1\App_Web_stimulsoftreports.aspx.cdcab7d2.1own-tdf.0.cs Riga: 224
please, help me :grinder:
PS. when i write "this.StiWebReport1.Show();", the stimulsoft intellisense does not shows the method "Show"
thanks in advance.
vs2010 and Stimulsoft.NET, installation problems!!!
Hello.
Thank you.
There is no Show() method in the StiWebReport class. If you want to show report, you should place the StiWebViewer on the aspx page and then in the Click event use next code:pasluc7469 wrote:PS. when i write "this.StiWebReport1.Show();", the stimulsoft intellisense does not shows the method "Show"
Code: Select all
this.StiWebViewer1.Report = this.StiWebReport1.GetReport();
-
- Posts: 4
- Joined: Wed Feb 22, 2012 5:15 pm
- Location: Italy
vs2010 and Stimulsoft.NET, installation problems!!!
and what about this error??
I think it is a dll problem... how can i resolve????
thank you in advance
Code: Select all
Messaggio di errore del compilatore: CS0433: Il tipo 'Stimulsoft.Report.Web.StiWebReport' esiste sia in 'c:\Windows\assembly\GAC_MSIL\Stimulsoft.Report.Web\2011.3.1200.0__ebe6666cba19647a\Stimulsoft.Report.Web.dll' che in 'c:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\b37ee1d1\95fbf3d1\assembly\dl3\d1d4d87e\00624d6a_8aeccc01\Stimulsoft.Report.Web.DLL'
Errore nel codice sorgente:
Riga 222:
Riga 223: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Riga 224: private global::Stimulsoft.Report.Web.StiWebReport @__BuildControlStiWebReport1() {
Riga 225: global::Stimulsoft.Report.Web.StiWebReport @__ctrl;
Riga 226:
File di origine: c:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\b37ee1d1\95fbf3d1\App_Web_stimulsoftreports.aspx.cdcab7d2.1own-tdf.0.cs Riga: 224
thank you in advance
-
- Posts: 4
- Joined: Wed Feb 22, 2012 5:15 pm
- Location: Italy
vs2010 and Stimulsoft.NET, installation problems!!!
the two file version are different... this dll file is the version 2012.1.1212.0
... and the version of the dll file here below is the version 2011.3.1200.0
... please, help me to resolve the problem..
thank you in advance..
Code: Select all
c:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\b37ee1d1\95fbf3d1\assembly\dl3\d1d4d87e\00624d6a_8aeccc01\Stimulsoft.Report.Web.DLL
Code: Select all
Stimulsoft.Report.Web.StiWebReport' esiste sia in 'c:\Windows\assembly\GAC_MSIL\Stimulsoft.Report.Web\2011.3.1200.0__ebe6666cba19647a\Stimulsoft.Report.Web.dll
thank you in advance..
vs2010 and Stimulsoft.NET, installation problems!!!
Hello,
Please make following steps:
1. Uninstall SR.
2. Check GAC and if need remove Stimulsoft Assemblies from GAC.
3. Install new version.
4. Update references in your projects.
Thank you.
Please make following steps:
1. Uninstall SR.
2. Check GAC and if need remove Stimulsoft Assemblies from GAC.
3. Install new version.
4. Update references in your projects.
Thank you.