mike-wigan
Newcomer
i know if i do this
it will add the word name to the list box LstKaraokeQue.
i dont want it to do that i want it to add the filename i have clicked on and add it to the list
the bit what is commented out i want it to ask me for a name first and add it to the front of the file name in LstKaraokeQue
can someone help ??
Code:
Private Sub FilesList_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles FilesList.DoubleClick
Dim Singer() As String
'InputBox("Singer?" = Singer(0) + 1)
LstKaraokeQue.Items.Add("name")
it will add the word name to the list box LstKaraokeQue.
i dont want it to do that i want it to add the filename i have clicked on and add it to the list
the bit what is commented out i want it to ask me for a name first and add it to the front of the file name in LstKaraokeQue
can someone help ??