Is it possible to delete a file off of a disk in the a: drive, by selecting it from a file list box, I tried using the kill command but it did not work, help.
Printable View
Is it possible to delete a file off of a disk in the a: drive, by selecting it from a file list box, I tried using the kill command but it did not work, help.
Yes you can delete the file using FileList box:
Code:Private Sub Command1_Click()
Kill File1.Path & "\" & File1.List(File1.ListIndex)
End Sub