Load

  • Thread starter Thread starter Rafael Metring
  • Start date Start date
R

Rafael Metring

what's the load sintaxe to use in pocket?

I am trying page_load , Form_Load , nameform_load , and not ran..

Rafael
 
private void NameForm_Load(object sender, System.EventArgs e) is the Syntaxe
for the C#
and you need to add a EvenHandler like:
//
// NameForm
//
this.Load += new System.EventHandler(this.NameForm_Load);



_____________________
Franky
:-)
 
Back
Top