Hi,
So okay im learning the basics of VB.NET atm so i thought id make something simple, A Pizza Order thing. No it doesnt save the orders but its does show the users choice in a label.
My problem is: I wan to have it so when it pops up instead of saying "Thankyou for your order" i want it to say "You chose <PIzza type>"
Any help woul dbe much apprieciated. And as far as the DIC policy goes i have tried on my part and supplied my code...
I know some will say "Finish learning" but the only reason im doing thisprogram now, is to see what i have learned

Im so newby

Heres the code:
CODE
Public Class Form1
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
End
End Sub
Private Sub Pizza1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Pizza1.CheckedChanged
Label1.Text = "You chose Pepperoni"
End Sub
Private Sub Pizza2_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Pizza2.CheckedChanged
Label1.Text = "You chose Vegetarian"
End Sub
Private Sub Pizza3_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Pizza3.CheckedChanged
Label1.Text = "You chose Hawian"
End Sub
Private Sub Pizza4_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Pizza4.CheckedChanged
Label1.Text = "You chose Margharitta"
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim Prompt As String
Prompt = " Thankyou for your order"
MsgBox(Prompt, , " Thankyou for your order")
End Sub
End Class