This is a migrated thread and some comments may be shown as answers.

cursor is not moving to mouse position in text boxes

2 Answers 148 Views
TextBox
This is a migrated thread and some comments may be shown as answers.
TAMILARASAN
Top achievements
Rank 1
TAMILARASAN asked on 15 Sep 2018, 11:37 AM
 I'm opening the sub forms in panel on the main form. The cursor is not moving to mouse position in text boxes

This is the code to open the sub form in a panel on the main form :
Public Shared Sub ShowForm(form As RadForm, Optional FormType As Integer = 0)

        Dim i As Integer
        form.TopLevel = False
        frmMainMenu.rdpnlchild.Controls.Add(form)
        form.BringToFront()
        If FormType = 0 Then
            form.Show()
        ElseIf FormType = 1 Then
            form.ShowDialog()
        End If

    End Sub

2 Answers, 1 is accepted

Sort by
0
Hristo
Telerik team
answered on 18 Sep 2018, 07:20 AM
Hello,

If you need to add the form to a panel, you can consider having a user control. Additionally, you can also check our MDI support: 
I hope this will help.

Regards,
Hristo
Progress Telerik
Get quickly and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0
TAMILARASAN
Top achievements
Rank 1
answered on 21 Sep 2018, 05:21 AM
thank you Hristo
Tags
TextBox
Asked by
TAMILARASAN
Top achievements
Rank 1
Answers by
Hristo
Telerik team
TAMILARASAN
Top achievements
Rank 1
Share this question
or