Hi Starmuyo, After I read your post, I don't think the following code is VB.NET code. Sub Button1_Click Form1.Print "Eat at Joe's" Form1.Print "Eat at Tom's" Form1.Print "Eat at Kevin's" Form1.Print "Eat at Rich's" End Sub Do you want to print "Eat at Joe's", "Eat at Tom's", ... etc line by line? Here is the VB.NET code that implement this. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim g As Graphics = Me.CreateGraphics() g.DrawString("Eat at Joe's", Me.Font, Brushes.Black, 10, 10) g.DrawString("Eat at Tom's", Me.Font, Brushes.Black, 10, 20) g.DrawString("Eat at Kevin's", Me.Font, Brushes.Black, 10, 30) g.DrawString("Eat at Rich's", Me.Font, Brushes.Black, 10, 40) End Sub If you have any problem with this, please feel free to tell me. Sincerely, Kira Qian Please mark the replies as answers if they help and unmark if they don't. |