Take a closer look at this line, which contains two message boxes:
Quote Originally Posted by ItsBryanTho View Post
Code:
            MsgBox(MessageBox.Show(String.Format("Order total: {0}", lblTotalCost.Text.Trim), "P.T.'s Grille ", MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation) = DialogResult.Yes)
The commands MsgBox and MessageBox.Show are basically the same thing... in this case the MessageBox.Show shows the "Order total:" bit, and the MsgBox shows whether the return value of that MessageBox.Show is DialogResult.Yes or not.