Completed
Last Updated: 02 Jul 2026 11:17 by ADMIN
Release 2026.2.702

When an appointment has a very short duration (seconds-level, e.g., 1 second and 0 minutes), it does not appear in the RadPrintPreviewDialog. The appointment is visible in the scheduler UI but missing from the print preview.

For example:

Dim ap1 As New Appointment
ap1.Start = New Date(Date.Today.Year, Date.Today.Month, Date.Today.Day, 15, 0, 0)
ap1.End = New Date(Date.Today.Year, Date.Today.Month, Date.Today.Day, 15, 0, 1)
ap1.Description = "not printed"
ap1.Summary = "not printed"
RadScheduler1.Appointments.Add(ap1)
Completed
Last Updated: 02 Jul 2026 11:17 by ADMIN
Release 2026.2.702
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: PropertyGrid
Type: Bug Report
1
To reproduce:

    Sub New()

        InitializeComponent()

        Dim intItem As New PropertyStoreItem(GetType(Integer), "Integer", 1)
        Dim floatItem As New PropertyStoreItem(GetType(Single), "Float", 1.0F, "Property storing a floating point value.")
        Dim stringItem As New PropertyStoreItem(GetType(String), "String", "telerik", "Property storing a string value", "Telerik")
        Dim fontItem As New PropertyStoreItem(GetType(Font), "Font", New Font("Arial", 12, FontStyle.Italic), "Property containing Font value")

        fontItem.Attributes.Add(New ReadOnlyAttribute(True))
        floatItem.Attributes.Add(New ReadOnlyAttribute(True))
        Dim store As New RadPropertyStore
        store.Add(intItem)
        store.Add(floatItem)
        store.Add(stringItem)
        store.Add(fontItem)
        Me.RadPropertyGrid1.SelectedObject = store
    End Sub

Try to edit either the "Float" or the "Font" property. The editor will be activated although it doesn't have to.

Workaround: cancel the Editing event

    Private Sub RadPropertyGrid1_Editing(sender As Object, e As PropertyGridItemEditingEventArgs)
        If e.Item.Name = "Font" Then
            e.Cancel = True
        End If 
    End Sub
Completed
Last Updated: 02 Jul 2026 11:17 by ADMIN
Release 2026.2.702

An exception is thrown when loading a document:

FileNotFoundException: Could not load file or assembly 'Microsoft.Web.WebView2.WinForms, Version=1.0.3719.77, Culture=neutral, PublicKeyToken=2a8ab48044d2601e' or one of its dependencies. The system cannot find the file specified.

Completed
Last Updated: 02 Jul 2026 11:17 by ADMIN
Release 2026.2.702
Setting the worksheet to protected does not prevent the user from changing the name of the worksheet. 
Completed
Last Updated: 02 Jul 2026 11:16 by ADMIN
Release 2026.2.702
When I create a new document and enter text, I change it to red, I underline the text: the underlined line changes to red (the text and the underline) but on the generated RTF document after export the underline becomes black.
Completed
Last Updated: 02 Jul 2026 11:16 by ADMIN
Release 2026.2.702

The following error occurs when closing Property Builder at design time:

Completed
Last Updated: 12 Jun 2026 13:57 by ADMIN
Release 2025.4.1111 (2025 Q4)

Excel-like pop-up location is not scaled properly on High DPI.

Completed
Last Updated: 04 Jun 2026 17:58 by ADMIN
Use attached to reproduce.
Completed
Last Updated: 04 Jun 2026 17:57 by ADMIN
Workaround: 
The vsdiffmerge.exe merge tool in Visual Studio 2017 is usually located here: C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer. You will need to create one additional folder named Ide inside the Team Explorer folder Then you can copy the vsdiffmerge.exe file from the Team Explorer folder to the newly created Ide folder. You can check the attached vsdiffmerge-path.png screenshot.

Then you can create the environment variable like this:
Variable name: VS120COMNTOOLS
Path: C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer\IDE
Completed
Last Updated: 04 Jun 2026 17:57 by ADMIN
Completed
Last Updated: 04 Jun 2026 17:57 by ADMIN

Hi, I would like to use the conversion tool to convert a WinForms project to Telerik controls. Unfortunately the menu item is not showing up for me. See attached screenshot. 

The project to be converted does include a reference to System.Windows.Forms. I am using VS2019 with the latest Telerik Winforms release. 

Thanks,

-Lou

Completed
Last Updated: 04 Jun 2026 17:56 by ADMIN
Created by: Dan
Comments: 1
Category: UI for WinForms
Type: Feature Request
5
Introduce a Converter tool standalone application which does not depend on a specific Visual Studio version.
Completed
Last Updated: 04 Jun 2026 17:56 by ADMIN
Created by: OrderMaster
Comments: 1
Category: UI Framework
Type: Feature Request
0

After a project, built with the standard MS controls, is successfully converted to a Telerik WinForms project, the subscriptions to certain events available in the Designer.cs file may disappear if you open the design view and make some changes. A solution for this behavior is described in the How to Deal with Disappearing Event Handlers after Opening the Designer for a Converted WinForms Project KB Article.

 


Completed
Last Updated: 04 Jun 2026 17:53 by ADMIN

VS 2022 17.5.1 successfully converts a blank WinForms project without any Telerik control in it.

VS 2022 17.6.2  hangs:

Completed
Last Updated: 22 May 2026 08:41 by ADMIN
Release 2026.2.520 (2026 Q2)
The AccessibleName property is not respected by the Windows Narrator.
Completed
Last Updated: 22 May 2026 08:40 by ADMIN
Release 2026.2.520 (2026 Q2)

Clients with perpetual license may observe the following warning when using UI.for.WinForms.AllControls.Net90 (v.2026.1.415): 

Telerik and Kendo UI Licensing warning TKL403: Services associated with Telerik Document Processing Libraries version 2026.1.402.80 require a subscription or trial license. Please obtain a subscription license at https://prgress.co/3PwQMKZ

Telerik and Kendo UI Licensing warning TKL004: Unable to locate licenses for all products.

Completed
Last Updated: 01 May 2026 11:38 by ADMIN
Release 2025.4.1212 (Preview)
In this scenario, we are using the custom approach from the How to Change PageViewMode for the Nested Levels in RadGridView KB article. When a child row is expanded and we collapse and expand its parent, an exception is thrown.
Completed
Last Updated: 17 Apr 2026 09:04 by ADMIN
Release 2026.1.414

The AccessibleName property is not respected by the Windows Narrator.

Other controls that have the same behavior:

  • RadMaskedEditBox
Completed
Last Updated: 15 Apr 2026 13:15 by ADMIN
Release 2026.1.414

Use the following code snippet:

    Sub New() 
        InitializeComponent()
        Me.RadCheckedDropDownList1.ShowCheckAllItems = True
        Me.RadCheckedDropDownList1.AutoSizeItems = True
        For x = 1 To 20
            Dim i As New DescriptionTextCheckedListDataItem
            i.Value = x
            i.Text = x.ToString()
            i.DescriptionText = "abc def ghijkl mnop abc def ghijkl mnop" & x
            Me.RadCheckedDropDownList1.Items.Add(i)
        Next 
    End Sub

Open the popup, scroll to the bottom and then back to the top.

Expected: The CheckAllItem is visible

Actual: The CheckAllItem is hidden

Completed
Last Updated: 15 Apr 2026 13:15 by ADMIN
Release 2026.1.414
When placing a bookmark and a hyperlink in a structured document tag, clicking on the hyperlink will not move the caret (navigate) to the bookmark
1 2 3 4 5 6