I'm not very good at explaining myself, but I have a problem where on starting debug in visual basic, my events for the form load arent loading.
Private Sub frmMain_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException)
    boolUserLog = False  'global variables
    fButtonsEnable() 'function call for enable buttons
    fFormLocation() 'function call for fixing form location
    Debug.WriteLine("|--START--|")
    Debug.WriteLine("COMPLETE LOAD")
    Debug.WriteLine("|---END---|")
    txtSearch.Text = strSearchText
End Sub
I've tried searching and am totally lost. The form itself loads fine, and other events in MyBase.Load in other forms work, but when this ^ particular form loads the debug lines don't show up in the output, which means none of this is loaded, I guess.
Any help?
 
     
    