Guest_imported
New member
- Jan 1, 1970
- 0
In my Pizza Application why can't I get the MsgBox function to add the "Extra's" What coding is missing?
Thanks for any help!
Private Sub cmdOrder_Click()
MsgBox ("Your Pizza will have"
If chkmushrooms.Value = 1 Then
msg = msg & "Extra Mushrooms"
End If
If chkHam.Value = 1 Then
msg = msg & "Extra Ham"
End If
If chkSpicy.Value = 1 Then
msg = msg & "Extra Hot'n'Spicy"
End If
End Sub