- Local time
- Yesterday, 23:29
- Joined
- Oct 29, 2018
- Messages
- 22,040
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