Possible Duplicate:
How should the Form.Load event be used compared to its constructor method?
Hello,
My question is regarding good programming practices in C#. If I'm creating a application with various forms I would initialize the connection to DB inside the Load method, or it should be inside the basic Constructor of the form? As well the other code to fill the forms basic textboxes and comboboxes can be inside the Load method or it is always better to use the constructor for that purpose?
Thanks in advance,
Kornel