
Originally Posted by
Phreak
Hello everyone,
Ok so I am trying out this code;
link but I stumbled upon an error..
I want to put the text of "textbox1" (or the vdata string) into a textbox
on another form (form2). Now, this is ezmode;
Code:
form2.textbox.text = textbox1.text
Ofcourse this isnt working, can anyone tell me why ?
Is it because it runs on another thread ?

Hi,
You can try this:
vb.net Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim Form2 As New Form2
Form2.Label1.Text = TextBox1.Text
Form2.Show()
End Sub
Wkr,
sparrow1