How do I get message box to stop loading new form
I have the following code on a button that loads new form

h Code:
  1. If Me.File_Name.Text = "" Then
  2.             MessageBox.Show("No DataFile Has Been Selected", "Please Select a DataFile", MessageBoxButtons.OK)
I want to stop loading the form is the message box appears

Thanks