The problem I'm having is that I'm using a menustrip on my home screen, and all of the tabs/buttons are working except for one, where instead of opening the form I want it to, it opens the standard, plain one that you see before adding anything to the form. If I change the form identifier that I want it to open then it works, just not with this form. Does anybody know why? The top subroutine here is the problematic one, the one below is a working one.
Private Sub SupportIncidentsToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles SupportIncidentsToolStripMenuItem.Click 
    Dim f As frmIncidents
    f = New frmIncidents(con, AccCon)
    f.Show()
End Sub
Private Sub EmailLogsToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles EmailLogsToolStripMenuItem.Click
    Dim f As frmEmailLogs
    f = New frmEmailLogs(con)
    f.MdiParent = Me
    f.Show()
End Sub
 
     
     
    