when I load form inside panel using code
With Form_brand
.TopLevel = False
Panel2.Controls.Add(Form_brand)
.BringToFront()
.Show()
End With
textbox inside form does not show its default behaviour like when i click inside textbox cursor show at starting of the text instead of place where I click the mouse. Another problem is that when I move mouse pointer with clicking mouse button text should be selected but this does not happen.
If I open form simply using code
Form_Brand.show()
textbox shows it default behaviour. What should I do?