Unplanned
Last Updated: 29 Mar 2016 14:18 by ADMIN
ADMIN
Dimitar
Created on: 06 Jan 2016 08:16
Category: Form
Type: Bug Report
0
FIX. RadForm - when a form is added to an existing form, the text in a textbox in the second form cannot be selected.
To reproduce:
Use the following method to add a form with a textbox to a panel:
Private Sub AddPage(ByRef f As Form)
    Try
        pnlScreenContainer.SuspendUpdate()
        f.TopLevel = False
        f.Visible = False
        f.Dock = DockStyle.Fill
        pnlScreenContainer.Controls.Add(f)
        f.Visible = True
        f.BringToFront()
        f.FormBorderStyle = Windows.Forms.FormBorderStyle.None
        f.Show()

        f.Activate()
    Catch
    End Try
    pnlScreenContainer.ResumeUpdate()
End Sub

Workaround:
- Use RadTextBoxControl instead.

0 comments