To start I already removed this form and created a new one, but I'm curious why this happened and what I did wrong.

1. I created a new project and copied several forms and files from an existing project using the "Add Existing Item" function.

2. I had one form that would show but had no data.

3. I call the form like this
Code:
    Private Sub mnuWaterUsers_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mnuWaterUsers.Click
        Dim frm As New frmUsers
        frm.Show()

    End Sub
4. I put a break point at "frmUsers_load"

5 . The from would show but never hit the break point. It did go to "frmUsers_Activated"

I'm sure I'm missing something but don't know what.