If I have a value stored into a textbox of form1 and I have to pass that value into an another textbox of another form2. What is the method to do this passing values from one fo
In Form1.vb make sure you use an event such as Button.Click and inside that
Dim obb As New Form2 obb.val = Me.TextBox1.Text() obb.Show() Me.Hide()
In Form2.vb use a property called "val"
Public Property val As String
And on an event like MyBase.Load
TextBox1.Text = val