Results 1 to 5 of 5

Thread: Storing Quote marks in a str

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Sep 1999
    Location
    Phoenix, az
    Posts
    1,517
    I cant store "" marks in a string and i HAVE
    to.. I need a way to do it, or I need another
    variable.. how do I do that?

  2. #2
    Lively Member
    Join Date
    Sep 2000
    Posts
    116

    Cool

    Hi Evan,

    Here what I would do...
    Text1 = "'" + "'" + "Put your string here" + "'" + "'"


    VBonliner

    0101011001000010
    01101111011011100110110001101001011011100110010101110010

  3. #3
    Lively Member
    Join Date
    Sep 2000
    Posts
    116

    Cool

    Just in case the single quotes were not visible
    inbetween the double quotes...
    Text1 =
    " ' " + " ' " + "Put your string here" + " ' " + " ' "


    VBonliner

    0101011001000010
    01101111011011100110110001101001011011100110010101110010

  4. #4
    Guest
    Use Chr(34) = "

    Try this:

    Code:
    Text1 = Chr(34) & "Put your string here" & Chr(34)

  5. #5

    Thread Starter
    Frenzied Member
    Join Date
    Sep 1999
    Location
    Phoenix, az
    Posts
    1,517
    Thanks so much!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width