2
22Pom
Hello All,
Yes, I'm back again on this subject.
I've started again to set up the solution and I can, if you like, move
deeper into the program, accessing various forms as I go BUT I cannot for the
life of me work out how to get back. I have set "CommonForms" in the
Properties/References of StartUp.
Just working with two projects "StartUp" & "CommonForms" I place a parent
form with child in "StartUp" and one form in "CommonForms". In the "StartUp"
child form I have the following code:
Public Class OpenSplash
Private Sub Button3_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button3.Click
Dim FormChild2 As New CommonForms.Form1
FormChild2.MdiParent = Background
FormChild2.Show()
Me.Hide()
End Sub
End Class
This closes the OpenSplash screen and shows Form1. How do I close Form1 and
get back to OpenSplash?
With this solved I can move forward, I'm sure.
Best Rgds,
22Pom
Yes, I'm back again on this subject.
I've started again to set up the solution and I can, if you like, move
deeper into the program, accessing various forms as I go BUT I cannot for the
life of me work out how to get back. I have set "CommonForms" in the
Properties/References of StartUp.
Just working with two projects "StartUp" & "CommonForms" I place a parent
form with child in "StartUp" and one form in "CommonForms". In the "StartUp"
child form I have the following code:
Public Class OpenSplash
Private Sub Button3_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button3.Click
Dim FormChild2 As New CommonForms.Form1
FormChild2.MdiParent = Background
FormChild2.Show()
Me.Hide()
End Sub
End Class
This closes the OpenSplash screen and shows Form1. How do I close Form1 and
get back to OpenSplash?
With this solved I can move forward, I'm sure.
Best Rgds,
22Pom