Link to home
Start Free TrialLog in
Avatar of bigc
bigcFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Writing to a text file

Can I write to a text file without the contents of the text file being in speech marks?
ASKER CERTIFIED SOLUTION
Avatar of qhenry
qhenry

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I do as follow in a lot of my project and works perfectly :

nPrintOut = FreeFile
Open sPSOut For Binary Access Write As #nPrintOut
         
' *** Add Generic Header
Put #nPrintOut, , "YourText" & chr$(13)

close #nPrintOut


Avatar of bigc

ASKER

Works perfectly - thanks