The pictures explain clearly what im trying to do.
So how can i let the values entered by the user to be there ?
The code i have in the back button is
What should i add or what shall i do to prevent getting the values wiped out?
I think i have to pass the values or store them in the back button When i press on calculate. Im not sure how to do so.
This is the code i have in the button "Calculate"



So how can i let the values entered by the user to be there ?
The code i have in the back button is
VB.NET:
Dim f1 As New Form1
Me.Hide()
f1.Show()
What should i add or what shall i do to prevent getting the values wiped out?
I think i have to pass the values or store them in the back button When i press on calculate. Im not sure how to do so.
This is the code i have in the button "Calculate"
VB.NET:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
second.Show()
Me.Hide()
End Sub
End Class
Last edited: