See if this helps.
Public Class Form1
Public a, b, c As Decimal
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If Not IsNumeric(TextBox1.Text) Then Exit Sub
Dim Obj1, Obj2 As New Form2
a = CDec(TextBox1.Text)
b = 1 + a
c = 2 + a
Obj1.Label1.Text = CStr(b)
Obj2.Label2.Text = CStr(c)
Obj1.Show()
Obj2.Show()
End Sub
End Class Public Class Form2
Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
With Form1
Label1.Text = CStr(.a)
Label2.Text = CStr(.b)
End With
End Sub
End Class