Question : vb.net sender name

Is there a way to find the sender's name, not the text on the button?

Thanks

Answer : vb.net sender name

Dim b as Button
b=DirectCast(sender,Button)
MessageBox.Show(b.Name)
Random Solutions  
 
programming4us programming4us