Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.65K
~394 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags
.net:vb.net x 1
.net:c# x 1
1 Posted Topic
You should be able to override the OnLoad and call the base class's OnLoad first, then your class, for example: protected override void OnLoad(EventArgs e) { base.OnLoad(e); // Do some stuff here }
The End.
Kavitha_2