Announcement

Collapse
No announcement yet.

How do I write a " to a text file

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    How do I write a " to a text file

    If I use the TextStream command, how should I construct it so the a " can be added in the text ?

    TextStream.Write("I want to put a " in here")

    I am sure it is a very simple answer

    Thanks

    Mark

    #2
    Try this:

    TextStream.Write("I want to put a " & chr(34) & " in here")

    Regards,
    Ultrajones
    Plug-ins: UltraMon, UltraM1G, UltraCID, Ultra1Wire, UltraLog, UltraWeatherBug, UltraPioneerAVR, UltraGCIR

    Comment


      #3
      Or you should be able to us double double quotes.

      ""

      Patrick Sikes
      SikesCentral Home Automation

      Comment


        #4
        This worked for me:

        Comment


          #5
          Thankyou all for your help

          Comment

          Working...
          X