Completed
Last Updated: 04 Oct 2016 06:45 by ADMIN
ADMIN
Ralitsa
Created on: 29 Aug 2016 08:18
Category: RichTextEditor
Type: Bug Report
1
FIX. RadRichTextEditor - an exception is thrown when closing form with disposed font
To reproduce: 
Please refer to the attached sample application and video demonstrating the experience issue. 

Workaround: 
Set RadRichTextEditor to null in Form`s Dispose method: 
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
    Me.RadRichTextEditor1 = Nothing
    Try
        If disposing AndAlso components IsNot Nothing Then
            components.Dispose()
        End If
    Finally
        MyBase.Dispose(disposing)
    End Try
End Sub
0 comments