K
kthulu
Greetings All
I've just started working on a project with .NET Compact Framework.
Does this newsgroup have a FAQ?
I have a generic VB question.
The code below is a standard evernt handling routine, it responds to both
Button1.Click & Button2.Click events.
Once inside the routine how do I determine the Source of the event?
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click, Button2.Click
End Sub
I'm guessing it is one of the propertys or methods of sender.GetType.???? or
e.GetType.????
Any ideas?
Thanks,
Wayne
I've just started working on a project with .NET Compact Framework.
Does this newsgroup have a FAQ?
I have a generic VB question.
The code below is a standard evernt handling routine, it responds to both
Button1.Click & Button2.Click events.
Once inside the routine how do I determine the Source of the event?
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click, Button2.Click
End Sub
I'm guessing it is one of the propertys or methods of sender.GetType.???? or
e.GetType.????
Any ideas?
Thanks,
Wayne