I'm in desperate need of pointers :(
I have this problem.
private class frmMenu
private intX as integer
Private Sub btnEstimate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnEstimate.Click
frmEstimateMenu.Show(intX)
end sub
end class
private class frmEstimate
private y as integer
Public Overloads Sub Show(ByRef x As integer)
y=x
end sub
Private Sub btnTransfer_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnTransfer.Click
y=5
end sub
end class
So when a user clicks the Transfer button on frmEstimate , it will change the value of intX on frmMenu.