I had a similiar problem like this earlier.
Add another'Windows Form' to your project, we'll say this is "form2". Now add a textbox to that form.
Go back to form1 and add this string to the button click event.
Replace textbox# and combobox# with your own values, refer to the name(s) of the boxes to decide which value holds what content.
this code is from an e-business card I'm working on, but should do just fine for you.
Private
Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
With Form2.TextBox1
.Text =
"Customer Information" & vbNewLine & vbNewLine
.Text &=
"Contact No: "
.Text &= TextBox1.Text & vbNewLine
.Text &=
"Client Name: "
.Text &= TextBox2.Text & vbNewLine
.Text &=
"Business Name: "
.Text &= TextBox3.Text & vbNewLine
.Text &=
"Business Type: "
.Text &= ComboBox1.Text & vbNewLine
.Text &=
"Product No.: "
.Text &= TextBox4.Text & vbNewLine
.Text &=
"Product Color: "
.Text &= TextBox5.Text & vbNewLine
.Text &=
"Product Type: "
.Text &= ComboBox2.Text & vbNewLine
.Text &=
"Design Type: "
.Text &= ComboBox3.Text & vbNewLine
.Text &=
"Design Color: "
.Text &= ComboBox4.Text & vbNewLine
.Text &=
"Quantity: "
.Text &= ComboBox5.Text & vbNewLine
.Text &=
"Special Instructions: "
.Text &= TextBox6.Text & vbNewLine
End With
Form2.Show()
End Sub