Hi,
You should do it like this:
In form1 you need a button to show your form2 like this:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim fr As New Form2
fr.Show()
End Sub
In form2 you can do it like this:
Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim y As Integer
y = Form1.TextBox1.Text
Dim x As Integer
x = Form1.TextBox2.Text
Label1.Size = New Size(y, x)
End Sub