Hi Telerik!
I use the following code to open a new form in a tab. however, when I want to open a different form in another new tab, it does not open with a focus, but rather, I have to click on that tab to see it
If gF_bFormAbierto("frmProd") = True Then
MsgBox("frm is open")
Else
RadDock1.Visible = True
Dim childForm As frmProductos = New frmProd()
childForm.MdiParent = Me
childForm.Show()
End If
image example: the one I mark with a red arrow is the new form that I opened