or
Hi,
I have a report that contains a checkbox. The report is being displayed in the Silverlight viewer. In both the Preview and Html Preview tabs the Checkbox and corresponding text are displayed. When I run my application the text portion of the checkbox is visible, however the checkbox itself is not visible. (See attached screen shots).
I am using IE 7, Silverlight 4 and .Net 4.
Any suggestions?
Thanks,
Sub ExportToPDF(ByVal reportToExport As Telerik.Reporting.Report) Dim reportProcessor As New ReportProcessor() Dim result As RenderingResult = reportProcessor.RenderReport("PDF", reportToExport, Nothing) Dim fileName As String = result.DocumentName + ".pdf" Response.Clear() Response.ContentType = result.MimeType Response.Cache.SetCacheability(HttpCacheability.Private) Response.Expires = -1 Response.Buffer = True Response.AddHeader("Content-Disposition", String.Format("{0};FileName=""{1}""", "attachment", fileName)) Response.BinaryWrite(result.DocumentBytes) Response.End() End Sub