is there a way to make this:
If dvdRadioButton.Checked = False And vhsRadioButton.Checked = False Then
MessageBox.Show("Format not specified", "Unspecified format", MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button1)
dvdRadioButton.Focus()
End If
If movieTitleTextBox.Text = "" Then
MessageBox.Show("Movie title not entered", "Movie Title", MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button1)
movieTitleTextBox.Focus()
End If
throw a single error message instead of two, one right after the other (without using the if construct)?
I read something about add handles or something? Any help is appreciated!