|
-
Aug 28th, 2000, 03:24 PM
#1
Thread Starter
Addicted Member
Private Sub mnuFileSaveAs_Click()
CommonDialog1.Filter = "Text (*.txt)|*.txt|" 'You can add other File Names here
CommonDialog1.ShowSave
Open CommonDialog1.Filename For Output As #1
Print #1, Text1.Text
Close #1
End Sub
I'm getting an error 75 path/file access error when I go to save the file, but then selected cancel button instead.
Can anyone help?
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
|