So, I'm making a program that has a "Print" button. I want it to open a PrintDialog, let the user select the printer they want to use, and print the contents in the RichTextBox/TextBox.
I was thinking about this:
Print.RichTextBox1.Text(PrintDialog1)
But it didn't work.
I also tried:
PrintDialog1.RichTextBox1()
Those came up with errors.
So, how do I do this? Please help, and thanks in advanced!