T
tony
Hello!
When exactly is it important or advisable to use this form load event
handler compare to using the C-tor.
For example here I create an event handler called dataBoundGridForm that is
called when the form is loaded.
this.Load += new System.EventHandler(this.dataBoundGridForm_Load);
I mean if I compare form load with the C-tor I think that it's enough to put
the code into the C-tor instead
of using the event handler for the form load.
So when can I skip form load and put the code into C-tor and
when is it important to use form load and put some code here.
If the form load is to be used what kind of functionallity should be put
here instead of using the C-tor.
//Tony
When exactly is it important or advisable to use this form load event
handler compare to using the C-tor.
For example here I create an event handler called dataBoundGridForm that is
called when the form is loaded.
this.Load += new System.EventHandler(this.dataBoundGridForm_Load);
I mean if I compare form load with the C-tor I think that it's enough to put
the code into the C-tor instead
of using the event handler for the form load.
So when can I skip form load and put the code into C-tor and
when is it important to use form load and put some code here.
If the form load is to be used what kind of functionallity should be put
here instead of using the C-tor.
//Tony