Quote 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:
  1. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  2.         Dim Form2 As New Form2
  3.         Form2.Label1.Text = TextBox1.Text
  4.         Form2.Show()
  5.     End Sub

Wkr,

sparrow1