I have a Windows Forms Application. I have several forms in this application (a main form, and several specialized forms), and on only one form, click events are not firing
This will do the trick for you
Change
public ScheduleMeeting() { InitializeComponent(); }
to
public MyForm() { InitializeComponent(); }