Telerik Forums
Reporting Forum
3 answers
112 views
I have a computer running VS2010 x64.  The coputer also has CR 2008 installed.  I am trying to test the cyrstal reports import option as I have over 100 existing reports.  But when I select the import type of Crystal Reports, the next button remains greyed.

I have read the kb article regarding setting the dev.app.config file for the different versions of CR Reports, and I have set the runtime options as described.  But still the Next button remains greyed.

Does anyone have any ideas aht I can try next.  This really is a show stopper for me.
Steve
Telerik team
 answered on 11 Oct 2010
1 answer
418 views
In my application, I have a list of orders. I want to be able to check a box next to several of these orders and print them as a report. I am trying to do this with a Report Book. I loop through the list of orders and if it is checked, I create a report and add it to a report book. But all I get is several of the same order. Example: I want to print orders 1, 2, 3, and 4. But my report book shows orders 4, 4, 4, and 4.

Here is the print code:

 

private void Print()

{

System.Data.EntityClient.

 

EntityConnectionStringBuilder entCSB = new System.Data.EntityClient.EntityConnectionStringBuilder();

 

entCSB.ConnectionString =

 

App.CurrentApp.CurrentEnvironment.Connection;

 

Telerik.Reporting.

 

ReportBook book = new Telerik.Reporting.ReportBook();

 

 

 

 

foreach (OpenOnlineOrderDetails details in Transactions)

{

 

 

if (details.Selected)

 

{

 

book.Reports.Add(new OrderReport(entCSB.ProviderConnectionString, details.SaleTransactionID.ToString()));

 

}

}

 

AppView.Views.

 

ReportForm report = new LogiText.AppView.Views.ReportForm(book);

 

report.Show();

 

}



And this is the form with the report viewer:

public partial class ReportForm : Form  

 

{

Telerik.Reporting.

 

ReportBook book;

 

 

 

public ReportForm(Telerik.Reporting.ReportBook reportBook)

 

{

InitializeComponent();

 

 

this.book = reportBook;

 

}

 

 

private void ReportForm_Load(object sender, EventArgs e)

 

{

reportViewer1.Report =

 

this.book;

 

reportViewer1.RefreshReport();

}

 

}

 

 

Peter
Telerik team
 answered on 11 Oct 2010
1 answer
274 views
Hi.

I have a silvelright reportViewer which Report property is set to a ReportBook.   The reports to be added to this ReportBook are set during runtime and depend upon the parameters sent from SL's client.

I mean, in the ReportBook's constructor, I need to read the parameters, commit a sql command to the database and upons results, add the required reports.     Right now, I cannot read the parameters.   I tried adding a dummy report and get its parameters (which are the same as the real reports ) but they are not filled with the values from the client.


Thanks,


Iosu.
Peter
Telerik team
 answered on 11 Oct 2010
3 answers
155 views
Here's a strange one...

When we produce a pdf report from a PC, all fields show 100% of the time - never a problem.  But some mac users are reporting SOME fields as 'invisible' (ie not showing) on a PDF report. <scratching head>

We'll try to narrow down as to what Macs/versions/browsers are doing this, but has the Telerik Reporting team ever heard of such a strange thing?  I thought PDF's were supposed to be 'universal' documents.  Note: they can see other fields no problem when they open the PDF usign a Mac -- it's just SOME fields are missing for them on Macs (the SAME fields that ALWAYS appear then pulling the same report form a PC)

Are you guys aware of any Mac/PDF bugs/limitations in Reporting?

Thanks,
Mike
M
Top achievements
Rank 1
 answered on 11 Oct 2010
11 answers
217 views

Hello,

We have a problem with Telerik Reporting.  We need make a report accessible trought RIA services in silverlight application from remote computer. Problem is that on local computer is all right, but on remote computer not.  We would like to configure our ISS on WindowsAutentification and set impersonate on true. But we can’t connect  to reporting service. The Error message wich we get is bellow:

IIS specified authentication schemes 'IntegratedWindowsAuthentication, Anonymous', but the binding only supports specification of exactly one authentication scheme. Valid authentication schemes are Digest, Negotiate, NTLM, Basic, or Anonymous. Change the IIS settings so that only a single authentication scheme is used.

Our web.config containts this configuration:

<?xml version="1.0"?>

<!--

  For more information on how to configure your ASP.NET application, please visit

  http://go.microsoft.com/fwlink/?LinkId=169433

  -->

<configuration>

  <system.webServer>

    <modules runAllManagedModulesForAllRequests="true">

      <add name="DomainServiceModule" preCondition="managedHandler"

           type="System.ServiceModel.DomainServices.Hosting.DomainServiceHttpModule, System.ServiceModel.DomainServices.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />

   

      </modules>

   

    <validation validateIntegratedModeConfiguration="false" />

  </system.webServer>

 

  <system.web>

    <compilation debug="true" targetFramework="4.0" />

    <customErrors mode="Off"/>

    <authentication mode="Windows" />

    <identity impersonate="true" />

    <httpModules>

      <add name="DomainServiceModule" type="System.ServiceModel.DomainServices.Hosting.DomainServiceHttpModule, System.ServiceModel.DomainServices.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />

    </httpModules>

     

  </system.web>

 

  <connectionStrings>

    <add name="TFSExtensionEntityDiagrams"

         connectionString="data source=(local);initial catalog=TFSExtension;user id=pokus;Password=P@s5w0rd"

         providerName="System.Data.SqlClient" />

    <!--<add name="TFSExtensionEntityDiagrams"

            connectionString="Data Source=(local);Initial Catalog=TFSExtension;Integrated Security=True"

            providerName="System.Data.SqlClient" />-->

   

    <!--<add name="ReportingLibrary.Properties.Settings.TFSExtension2"

            connectionString="Data Source=(local);Initial Catalog=TFSExtension;Integrated Security=True"

            providerName="System.Data.SqlClient" />-->

  </connectionStrings>

  <system.serviceModel>

    <serviceHostingEnvironment aspNetCompatibilityEnabled="true"

      multipleSiteBindingsEnabled="true" />

    <services>

      <service name="Telerik.Reporting.Service.ReportService" behaviorConfiguration="ReportServiceBehavior">

        <endpoint address="" binding="basicHttpBinding" contract="Telerik.Reporting.Service.IReportService">

          <identity>

            <dns value="localhost"/>

          </identity>

        </endpoint>

        <endpoint address="resources" binding="webHttpBinding" behaviorConfiguration="WebBehavior" contract="Telerik.Reporting.Service.IResourceService"/>

       

      </service>

    </services>

    <behaviors>

      <serviceBehaviors>

        <behavior name="ReportServiceBehavior">

          <serviceMetadata httpGetEnabled="true"/>

          <serviceDebug includeExceptionDetailInFaults="false"/>

        </behavior>

      </serviceBehaviors>

      <endpointBehaviors>

        <behavior name="WebBehavior">

          <webHttp/>

        </behavior>

      </endpointBehaviors>

    </behaviors>

  </system.serviceModel>

</configuration>

Nikolay Rusev
Telerik team
 answered on 11 Oct 2010
1 answer
103 views
Despite uninstalling and re-installing and uninstalling The Q2 2010 trial for Telerik reporting, winforms, web stuff etc, my registry and file system is till littered with its legacy and there is still a menu for reporting in visual studio. Huh?

Running VS 2010 Ultimate, Win7 x64

Here is the VS startup log.

157 Begin package load [Telerik.Reporting.VsPackage.VsPackage, Telerik.Reporting.VsPackage, Version=3.11.0.0, Culture=neutral, PublicKeyToken=a9d7983dfcc261be] {EF758E88-9A91-4C54-87EA-D6E1542BE262} VisualStudio 2010/10/08 23:36:14.113
158 End package load [Telerik.Reporting.VsPackage.VsPackage, Telerik.Reporting.VsPackage, Version=3.11.0.0, Culture=neutral, PublicKeyToken=a9d7983dfcc261be] {EF758E88-9A91-4C54-87EA-D6E1542BE262} VisualStudio 2010/10/08 23:36:14.131
159 Entering function CVsPackageInfo::HrInstantiatePackage {D4F5086C-54B9-4B07-BD22-AF72D5B9228F} VisualStudio 2010/10/08 23:36:14.131
160 Begin package load [Telerik.CommonPackage.Telerik_CommonPackagePackage, Telerik.CommonPackage, Version=1.0.5.0, Culture=neutral, PublicKeyToken=d63abc9583eb6f32] {D4F5086C-54B9-4B07-BD22-AF72D5B9228F} VisualStudio 2010/10/08 23:36:14.132
161 End package load [Telerik.CommonPackage.Telerik_CommonPackagePackage, Telerik.CommonPackage, Version=1.0.5.0, Culture=neutral, PublicKeyToken=d63abc9583eb6f32] {D4F5086C-54B9-4B07-BD22-AF72D5B9228F} VisualStudio 2010/10/08 23:36:14.136

I ran devenv / setup

Do you have a script that removes all of the trash from the registry? Failing that, do you have a list of where I should tediously manually delete the entries?

A search for "Telerik" on C: reveals a ton of files in
appdata / local / assembly / dl3
Visual Studio templates
the GAC

 - what kind of uninstallation is that? I wonder what the hell else is left in there?

I wish I had never touched it. Am I really going to have to reformat and reinstall everything to get rid of all this junk?
Erjan Gavalji
Telerik team
 answered on 11 Oct 2010
6 answers
151 views
i am using telerik reporting 2010 Q2 trial version .

i put a textbox and bind it to Fields.A.B.C.Name with objectdatastore
but it says :
the expression contains object 'Name' that is not defined in the current context

what is the problem and how can i solve it ?
Massimiliano Bassili
Top achievements
Rank 1
 answered on 11 Oct 2010
3 answers
155 views
I created a report with some simple grouping but when I preview it every other page is blank (it has the styles but no information). The next page after the blank will contain data, no data is missing just blanks inserted between. The HTML preview works fine.
Any tips on what I am missing?
Thanks
Ed
Top achievements
Rank 1
 answered on 08 Oct 2010
1 answer
121 views
HI,
 
Is it possible to have a chart in a report with a lot of items in a serie, but limit the number of items that are showed on legends ?

Thanks
Edson
Peter
Telerik team
 answered on 08 Oct 2010
1 answer
107 views
Dear Support,

We have a report with 3 different cultures, EN, ES, JP. It seems to be working correct, but sometimes when you try to print the generated report I got an error from the Telerik Dll that says "Unhandled exception at 0x7c911689 in iexplore.exe: 0xC000005: Access violation reading location 0x16141213". We tried in different machines and we also get these error when the Print Preview is going to appear.
After this error the Print Preview does not appear and Internet Explorer closes also.

Attached to this thread is the error message. As I said before the message is not showed always, we have to try a lot of times to get this error.
It seems to be a bug from Telerik or Adobe Plugin (Adobe Plugin is the last we can get in Adobe.com)

Thanks a lot for your help
Peter
Telerik team
 answered on 08 Oct 2010
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?