J
Justin
Take this example:
Private Sub nPnlProfile_MouseHovers(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles comboProfileName.MouseHover,
btnDelete.MouseHover, btneditFolderPath.MouseHover,
comboThumbQuality.MouseHover, comboThumbSize.MouseHover,
btnAddFile.MouseHover, ListBox1.MouseHover, btnRemove.MouseHover
'Do Something
End Sub
Is there a way to detect which control is firing so I can run code for that
control.mousehover? I figured that would be better then having a hundred
some subs.
Is this an appropriate way to code?
Thanks,
Justin
Private Sub nPnlProfile_MouseHovers(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles comboProfileName.MouseHover,
btnDelete.MouseHover, btneditFolderPath.MouseHover,
comboThumbQuality.MouseHover, comboThumbSize.MouseHover,
btnAddFile.MouseHover, ListBox1.MouseHover, btnRemove.MouseHover
'Do Something
End Sub
Is there a way to detect which control is firing so I can run code for that
control.mousehover? I figured that would be better then having a hundred
some subs.
Is this an appropriate way to code?
Thanks,
Justin