User FAQs
If you have a question, please send it to us.
1) When should I use the Form Constructor ?
Any code that is placed in the Constructor will be run when the form object is created.
The constructor automatically contains a call to InitializeComponent.
Any UI must be inserted after this call.
2) When should I use the Form_Load event ?
Any code that is placed in the Load event will only be run when the form is shown i.e. frm.Show();
For simple forms, everything is often placed in the constructor.
© 2023 Better Solutions Limited. All Rights Reserved. © 2023 Better Solutions Limited TopPrevNext