Telerik blogs

Latest

  • Release

    You said Windows 3.11? Did I hear right?

    Well folks that's right - MS Windows for Workgroups 3.11 is pretty much still alive and kicking. First when I found out that this 15+ years old OS was still popular in the embedded segment (please forgive my ignorance as embedded systems are not my core competency) I couldn't believe my eyes. According to John Coyne this fact changes starting October 1st, 2008 - from this date on OEM's will no longer be able to license Windows for Workgroups 3.11. The comments and the flame that started at ArsTechnica are very interesting though. It looks like the guys that...
    May 27, 2021 1 min read
  • Release

    New online resources for the past four weeks (08/04/2008 - 08/29/2008)

    Below is a summary of the new online resources available for our ASP.NET AJAX controls/WinForms controls: RADCONTROLS FOR ASP.NET AJAX RadMenu Code library entries Load-on-Demand Context Menu (with RadAjaxManager): http://www.telerik.com/community/code-library/submission/b311D-bkkthk.aspx RadTreeView Help topics Troubleshooting > Expanding nodes: http://www.telerik.com/help/aspnet-ajax/troubleshooting-expanding-nodes.html Code library entries Navigating through RadTreeView with ALT + the arrow keys while editing Nodes: http://www.telerik.com/community/code-library/submission/b311D-bkdgae.aspx Updating Drag&Drop operations to Data Base through LinqDataSource: http://www.telerik.com/community/code-library/submission/b311D-bkkmce.aspx
    March 17, 2025 2 min read
  • Release

    New "Online Help" is now available for RadControls for Silverlight Beta2

    I am really excited to announce the newly updated Documentation page about RadControls for Silverlight. Currently, you can directly open and browse the newly added Online Help or download the latest CHM file containing the same topics. We will be surely enhancing the content of the help files so that the users could find there most of the answers they are looking for. Our goal is to provide a wide range of topics - from simple "how-to" articles to advanced and complicated topics about our controls for Silverlight.
    May 27, 2021 1 min read
  • Release

    Send Telerik Report as email attachment

    The Report Viewers (Win and Web) do not support sending of reports via e-mail out-of-the-box. To mail a report you have to first render the report programmatically into a convenient format and then attach it to a mail message. Here is a possible way of how to achieve this by using the SmtpClient object: void MailReport(Telerik.Reporting.Report report, string from, string to, string subject, string body){string mimeType; string extension; Encoding encoding; byte[] reportBytes = ReportProcessor.Render("PDF", report, null, out mimeType, out extension, out encoding); MemoryStream ms = new MemoryStream(reportBytes); ms.Position = 0; Attachment attachment = new Attachment(ms, report.Name + "." + extension); MailMessage msg = new MailMessage(from, to, subject, body); msg.Attachments.Add(attachment); SmtpClient client = new SmtpClient(smptHost); ...
    May 27, 2021 1 min read
  • Release

    Telerik Reporting Q2 2008 SP1 is now live

    Hello People,   My name is Rossen Hristov and I am a developer at the Telerik Reporting team. This is my first post and in it I would like to share some good news with you -- Telerik Reporting Q2 2008 SP1 is now officially live. We have spent the last month or so making sure that most of the issues that you have reported have been addressed carefully. This Service Pack is by far the largest we have delivered in terms of issues fixed and I would like to thank you for the great feedback that you have provided during the past...
    November 05, 2024 2 min read