I am trying to incorporate many user inputs (textboxes, comboboxes, DatePicker, etc) into one messagebox that will appear once a button is clicked, but I do not know how to do that all within one messagebox. I only know how to do them separately.
Here is my Button_Click code
Dim s, sOut As String
Dim x As System.Xml.XmlElement = cbEval.SelectedItem
If x Is Nothing Then
MsgBox("fill in Evaluator")
Else
s = "Evaluator Name: {0}"
sOut = String.Format(s, x.InnerText)
MsgBox(sOut)
End If
When the user chooses an option from cbEval (combobox) and then clicks the "submit" button, the option they chose is displayed. I am trying to also add DatePicker, CbEval, cbSelfEval, txtSelfComments, cbPeer, txtTotal and txtComments to the same MessageBox but don't know how to add them, especially the DatePicker (calendar). Any thoughts as to how I can add more onto 1 messagebox?