I have a FileListBox and it is populated via a folder full of shortcuts (.lnk)
How can I make the FileListBox react so that when one of the shortcuts is clicked on in the FileListBox it opens the program that the shortcut is pionting to?
How can I make the FileListBox react so that when one of the shortcuts is clicked on in the FileListBox it opens the program that the shortcut is pionting to?
Code:
Private Sub File1_Click()
Code:
'Go to Program
Code:
End Sub
Code:
Private Sub Form_Load()
Code:
File1.Path = "C:\Program Files\app"
Code:
End Sub