Not 'breaking' or executing statments.

  • Thread starter Thread starter Pete Vickers [MVP]
  • Start date Start date
P

Pete Vickers [MVP]

Hi,
I have a project, that doesn't appear to process frmMain at all - I break at
form_load, and nothing happens. The form shows, but has done no processing
in the form load.

I have tried having frmMain as my startup object, and also
Dim frmy As New frmMain
frmy.ShowDialog()

But my frmMain appears, without going thru the form_load.

This is driving me mad. If I change to startup with a different form, all is
OK.

Anyone any ideas please

Thanks

Pete
 
Make sure your "Handles" statement is still intact where your Load
event handler is declared.
 
Back
Top