This is what I want to happen with this code:

'this will be called in the middle
'of passing the files from source to selected

Sub StoreInfo (lstSourceFiles.Text as string)

Dim SavedFile as String

'there needs to be as many SavedFiles as there
'is selected files which we do not know until
'the file is chosen and passed
'so that savedfile will store all of the information

'the following code is what I want to happen
SavedFile1 = lstSourceFiles.Text
SavedFile2 = lstSourceFiles.Text

'SavedFile will keep adding one for every file passed
End Sub

This what I want to do even possible??