In VB6 I could use the following code in a general module to change the text in a textbox on a form

frmMain.tbText.Text = "Hello World"

but this does not work in .NET. I have changed the Modifiers property to Public for each control I want access to, but they still do not show up in the intellisense listing.

Any help?