GamesRule
01-14-2004, 08:21 AM
Hi
I need to call the listbox_doubleclick event.
I have
lstCurrentPlaylist_DoubleClick()
Says "Argument Not Specified for parameter "e" of Private Sub lstCurrentPlaylist_DoubleClick(sender as object, e as system.eventargs)
In the lstCurrentPlaylist_DoubleClick I have:
Private Sub lstCurrentPlaylist_DoubleClick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lstCurrentPlaylist.DoubleClick
Media1.URL = lstCurrentPlaylist.SelectedItem
End Sub
Do I have to do something with the ByVal e As System.EventArgs in the parantheses of the call line?
I need to call the listbox_doubleclick event.
I have
lstCurrentPlaylist_DoubleClick()
Says "Argument Not Specified for parameter "e" of Private Sub lstCurrentPlaylist_DoubleClick(sender as object, e as system.eventargs)
In the lstCurrentPlaylist_DoubleClick I have:
Private Sub lstCurrentPlaylist_DoubleClick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lstCurrentPlaylist.DoubleClick
Media1.URL = lstCurrentPlaylist.SelectedItem
End Sub
Do I have to do something with the ByVal e As System.EventArgs in the parantheses of the call line?