I want to test the content of the filelistbox that is populated with a file. What variable contains the value/s of the filelistbox?
Printable View
I want to test the content of the filelistbox that is populated with a file. What variable contains the value/s of the filelistbox?
huh? I didn't know the filelistbox had a value...
File1.ListCount will give you the number of items....
Otherwise, check your terminology and post again.
Or could you possibly mean getting the selected filename?
VB Code:
MsgBox File1.FileName
Yes, that's it. Thanks.