Hi there! I've been programming for a while now, but VB.NET came and destroyed my experince. This is my problem:

I've got two forms: Form1 and Form2. Form1 is opened first and then i open Form2. I want to send Form2.Text to Form1.Text. How do i do this? In VB6 i just wrote:

Form1.Text = Form2.Text

(I wan't to do this operation while standing with focus on Form2. So the operation will be done when i push a button on Form2.)

But it's different in VB.NET. Right? I have acomplished to take data from a other form, but i don't know how to send data to another form! Please help me!!!