Hi, I know i might sound dumb to some but i require some help please. Its pretty simple what I am trying to do, I have a MDI container which loads some form, there are loads of forms but to make things simple i will try to explain it using 3 forms. The program works by a menu opening form 1, in that form the user opens form 2, now when the user exits form 2, form 3 should appear and should be visible at the front. I know its simple but im struggling on it, the problem i get is that form 3 appears behind the actual program, So far I have tried the following pieces of coding:
I have also tried .Showdialogue(Me) but there are problems, as I have a textbox on form2 and form3 which holds the same data, so when form 3 appears it shows the same data as form2.
Im sorry if i sound confusing, but if anyone could help id appreciate it.
Thanks
VB.NET:
Me.Close()
Dim frmreturnitems As New Form15
frmreturnitems .Show()
frmreturnitems .BringToFront()
I have also tried .Showdialogue(Me) but there are problems, as I have a textbox on form2 and form3 which holds the same data, so when form 3 appears it shows the same data as form2.
Im sorry if i sound confusing, but if anyone could help id appreciate it.
Thanks
Last edited by a moderator: