OK, simple problem. What is the proper code to reference a textbox on a form from a subroutine within a module in VB 2012? And can you point to a MSDN reference to explain proper coding format.
Thanks.
MODULE1
Sub PrintToTextBox(...) -----------------------------------
.......... | Form1 |
textbox1.AppendText("Hello world!") ----------->| [textbox1] |
........... | |
Return ----------------------------------
End Sub
End Module