How do you call form using the docking manager and set the select Document Pane.
I tried this code but it does not set the correct focus to the Document Pane I am looking for.
Thank you!
Private Sub RadButton2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadButton2.Click
Dim frmShowSearch As DialogResult
Dim frmSearch As New Search
frmSearch.DocumentPane2.Select()
frmSearch.DocumentPane2.Activate()
frmShowSearch = frmSearch.ShowDialog()
End Sub
I tried this code but it does not set the correct focus to the Document Pane I am looking for.
Thank you!
Private Sub RadButton2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadButton2.Click
Dim frmShowSearch As DialogResult
Dim frmSearch As New Search
frmSearch.DocumentPane2.Select()
frmSearch.DocumentPane2.Activate()
frmShowSearch = frmSearch.ShowDialog()
End Sub