tags:

views:

41

answers:

2

hello does anybody have any idea what's does this mean: onLoad="MyOnLoad"?

thanks

+1  A: 

Most likely you have a Subprocedure MyOnLoad which is being called on when the onLoad-event occurs.

Yannick M.
+1  A: 

OnLoad is an event that occurs when a control has been created. The MyOnLoad method will be called when the control has been created and added to the window/form.

Guffa