Can anyone someone please tell me why my "MessageBox.Show" will not work? the "Show" us underlined with the red squigllies.
Private Function DoInputValidation()
If chkBoxOilChange.Checked Or chkBoxLubeJob.Checked = False Then
MessageBox.Show = "you must selcet an item"
ElseIf chkBoxOilChange.Checked AndAlso chkBoxLubeJob.Checked = True Then
Else
End If
'Create ValidateInputFields function here.
End Function