Using the Print # statement, I can't get double-quotes to work

G

Guest

Hello,
I need to write out the following line using the Print #1 statement.
The file opens fine, all other lines write fine, but I can't figure out how
to get the required double-quotes to write out properly.
(The Write #1 statement doesn't work well since it writes out quotes and
commas)

The line needs to appear as:
<Transaction type="Add" ClientSourceID="260" MatterSourceID="235">

ClientSourceID and MatterSourceID are integers generated in other parts of
the program.
Many thanks for your help.
 
G

Guest

Use two sets of " in a row. So something like this...

"<Transaction type=""Add"" ClientSourceID=""260"" MatterSourceID=""235"">"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top