Hi guys,
I am using VB.NET for Windows applications. What is the difference between Load event,Activate event and Enter event in the Form and in which order the above event is executed.Please anyone help me.
Sivakumar.P
Hi guys,
I am using VB.NET for Windows applications. What is the difference between Load event,Activate event and Enter event in the Form and in which order the above event is executed.Please anyone help me.
Sivakumar.P
The Enter event is suppressed in Form. Its equivalent is Activated. Loaded occurs once during creation. Activated occurs whenever the Form becomes active (e.g. is selected by the user, opened, etc). Loaded comes before Activated.