or
pictureBox_Specimen1.Value = System.Drawing.
Image.FromFile(sketchpath.Path);
Instead of just generating report we want our customer to design their report layout themselves (just like the telerik report designer add-on for Visual studio 2010). Is it possible for us to get/buy your report designer so that user can drag and drop what they want in Silverlight.
Thank you.
Server Error in '/AjaxWebInterface' Application.Entry point was not found.Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.Exception Details: System.EntryPointNotFoundException: Entry point was not found.Source Error:An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.Stack Trace:[EntryPointNotFoundException: Entry point was not found.] Telerik.Reporting.IReportDocument.get_ReportParameters() +0 Telerik.ReportViewer.WebForms.ReportViewer.get_HasParams() +127 Telerik.ReportViewer.WebForms.ReportViewer.SetParamControlsVisibility() +46 Telerik.ReportViewer.WebForms.ReportViewer.OnPreRender(EventArgs e) +47 System.Web.UI.Control.PreRenderRecursiveInternal() +80 System.Web.UI.Control.PreRenderRecursiveInternal() +171 System.Web.UI.Control.PreRenderRecursiveInternal() +171 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +842Version Information: Microsoft .NET Framework Version:2.0.50727.4927; ASP.NET Version:2.0.50727.4927<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ReportViewer.aspx.cs" Inherits="ReportViewer" %><%@ Register Assembly="Telerik.ReportViewer.WebForms, Version=4.0.10.423, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" Namespace="Telerik.ReportViewer.WebForms" TagPrefix="telerik" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title></head><body> <form id="form1" runat="server"> <div id="Div1" style="vertical-align: top; height: 80px; background-image: url(<%= ResolveClientUrl("~/img") %>/logo.png); background-position: right; background-repeat: no-repeat"> <asp:Panel runat="server" ID="DashboardPanel"> </asp:Panel> </div> <div> <telerik:ReportViewer ID="ReportViewer1" runat="server" Width="100%" Height="100%"> </telerik:ReportViewer> </div> </form></body></html>public partial class ReportViewer : System.Web.UI.Page{ protected void Page_Load(object sender, EventArgs e) { ReportViewer1.Report = PluginManager.Instance.GetReport("TagByAllRegionsByYear"); }}Protected Overrides Sub OnLoad(ByVal e As System.EventArgs) MyBase.OnLoad(e) 'Bind the report viewer If Model.Report Is Nothing Then Throw New Exception("Sorry an error has occured. (The report must be intialized before render attempt)") End If If Model.ReportParameters Is Nothing Then Model.ReportParameters = New Telerik.Reporting.ReportParameterCollection() End If For Each existingParam In Model.ReportParameters Model.Report.ReportParameters.Add(existingParam) Next modularRptViewer.ParametersAreaVisible() = False modularRptViewer.Report = Model.Report End Sub