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 "CommonForm s" in the
Properties/References of StartUp.
Just working with two projects "StartUp" & "CommonForm s" I place a parent
form with child in "StartUp" and one form in "CommonForm s". In the "StartUp"
child form I have the following code:
Public Class OpenSplash
Private Sub Button3_Click(B yVal sender As System.Object, _
ByVal e As System.EventArg s) Handles Button3.Click
Dim FormChild2 As New CommonForms.For m1
FormChild2.MdiP arent = 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 "CommonForm s" in the
Properties/References of StartUp.
Just working with two projects "StartUp" & "CommonForm s" I place a parent
form with child in "StartUp" and one form in "CommonForm s". In the "StartUp"
child form I have the following code:
Public Class OpenSplash
Private Sub Button3_Click(B yVal sender As System.Object, _
ByVal e As System.EventArg s) Handles Button3.Click
Dim FormChild2 As New CommonForms.For m1
FormChild2.MdiP arent = 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
Comment