View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Chip Pearson Chip Pearson is offline
external usenet poster
 
Posts: 7,247
Default Visual Basic Problem with Chr(34)

Bernard,

The Write statement automatically quotes text output strings. Use
Print instead of Write.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"test" wrote in message
...
Hello,

When I write in a file with the command Chr (34) :

===========
txt = Chr (34)
write #1, txt
===========

I've got two double quote instead of only one ...
... like this :
""

Help.

Bernard