Telerik blogs

Latest

  • Release

    New build of RadScheduler for WPF for Q2 2008 SP1

    We prepared a new build of RadScheduler for WPF that is fully compatible with the Q2 2008 SP1 release of RadControls for WPF. The ZIP file is attached to the following forum thread: RadScheduler new build for Q2 2008 SP1   You can download it and give it a go. We also featured in the ZIP file the updated examples about RadScheduler. Below, you can find a full list of all the changes that have been included in the latest RadScheduler build: New Features: SchedulerView changes   - The derived classes for each View (Day, Week and Month) have been removed   -...
    September 11, 2008 2 min read
  • 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