|
-
Sep 9th, 2000, 03:34 PM
#1
Thread Starter
Member
Does anyone know how to print the " character to a text file using the default Print # statement. Because everytime i try to do it the " char ends the string and everything after isn't recognised
-
Sep 9th, 2000, 03:37 PM
#2
Fanatic Member
-
Sep 9th, 2000, 03:38 PM
#3
_______
"A myth is not the succession of individual images,
but an integerated meaningful entity,
reflecting a distinct aspect of the real world."
___ Adolf Jensen
-
Sep 9th, 2000, 05:51 PM
#4
Use quadro-quotes.
Code:
Open "MyFile" For Output As #1
Print #1, """"
Close #1
-
Sep 9th, 2000, 06:01 PM
#5
If you want to quote the text in a file, use the Write statement.
Code:
Open "MyFile" For Output As #1
Write #1, "This is quoted."
Close #1
-
Sep 9th, 2000, 09:28 PM
#6
Hyperactive Member
Asterisk
BTW, your name is chr(42)
lol
Combat poverty: kill a poor!!
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
|