You need to think of it in terms of classes. In .Net, each form is a class. So if it is not instantiated, then you cannot access it.
For example, to reference an object on "Form2", do it like this:
Dim f2 as new Form2
f2.txt1.Text = "Text here."