- Local time
 - Today, 02:24
 
- Joined
 - Oct 29, 2018
 
- Messages
 - 22,724
 
Yup! Trying to open a file with using just the filename won't work. Also, since my demo lists all the files in a folder and its subfolders, you could have duplicate filenames showing in the listbox. Double-clicking on any of them wouldn't specify which one to open. That's why you need the whole path.Private Sub lstFiles_DblClick(Cancel As Integer)
fShellExecute Me.lstFiles
End Sub
Thank again