|
-
Jul 21st, 2001, 02:24 PM
#1
Output Access Write #1
If I put some lines in a text file, it gets surrounded by double quotes. How to avoide getting ".
Thanks in advance
-
Jul 21st, 2001, 02:29 PM
#2
Junior Member
are you using the write method?
try using the print method instead
-
Jul 21st, 2001, 02:38 PM
#3
PowerPoster
try using the TextStream and FSO Object instead. Much faster and less coding!
-
Jul 21st, 2001, 04:38 PM
#4
Frenzied Member
Use this function:
VB Code:
Public Sub SaveFile(FileName, Contents)
Open FileName For Output As #1
Print #1, Contents
Close #1
End Sub
You can then call the function and put a textbox.text or something in the contents parameter.
-
Jul 22nd, 2001, 05:56 AM
#5
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
|