Delete a file with almost one line of code
Delete a file with almost one line of code
Rate Delete a file with almost one line of code
(2(2 Vote))
' add the following code in to it
' create a textfile in c:\ that you give the name testing.txt
Dim strFile As String
strFile = "c:\testing.txt"
Kill strFile
msgBox "The file " & strFile & " has been deletet",vbInformation,"Del"
' by Morten D Carlsson
Delete a file with almost one line of code Comments
No comments yet — be the first to post one!
Post a Comment