Well, i VB6 i'd make like this:

(if i was using a module, for example)

Form1.Label.Caption = "updated text outside the form code"

But how can i do in C#?

I tryed:

Code:
Form1 frm  = new Form1();
but frm.Label1.Caption doesn't exists!