If you want to go low level and have a printer direct connected to the a printer port (no idea how it handles USB) you can write to it directly as follows
Open "PRN" For Output As #1
Print #1, "Here is line one"
Print #1, "Here is a text box " & Text1.Text
Close #1