|
-
Jan 28th, 2003, 09:55 PM
#1
Thread Starter
Hyperactive Member
How can I delete a file from a FlieList Box?
Hello,
How can I delete a file from a FlieList Box or current directory?
This was apart of another post, but it somwhow disappeared from the post. I never got an answer.
-
Jan 28th, 2003, 10:18 PM
#2
Try:
VB Code:
Private Sub Command1_Click()
Kill (Dir1.Path & File1.FileName)
File1.Refresh
End Sub
when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
https://get.cryptobrowser.site/30/4111672
-
Jan 29th, 2003, 02:29 PM
#3
Thread Starter
Hyperactive Member
Thank you,
Here is what worked for me.
After a file was loaded from a FileList Box, here is what I did.
This is a word processor.
VB CODE:
Private Sub DeleteFile_Click()
Kill File1
File1.Refresh
End Sub
Last edited by GARY MICHAEL; Jan 29th, 2003 at 02:35 PM.
Thanks,
GARY
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|