I have a MDI Container as startup form and in the Private Sub frmMain_Load function I want to load up frmLogin as a dialog. I did it as frmLogin.Show() but then the MDI Container is not on the background. When I do it as frmLogin.ShowDialog() then the MDI Container is loaded and frmLogin is loaded too but on the background.
Is there any solution. I tried google but I have no luck.
set frmMain’s property mdiContainer to true.
IsMdiContainer=trueand
frmLogin.MdiParent = Mein your function