Hi,
I have a winforms form which is inherited from another form.
e.g.
class StartForm : aSyncDialog
aSyncDialog has an onload event
protected override void OnLoad(EventArgs e)
I have noticed that the load event in StartForm is not firing but the OnLoad one is.
private void StartForm_Load(object sender, EventArgs e)
Any idea why? Is there something I need to put into either the parent or sub class to get it to run?