Results 1 to 3 of 3

Thread: Saving Strings??

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Jul 2000
    Posts
    29
    Howdy All,

    One Quick Question. Is there a way to save a string so that it does not have the quotes surrounding it? Thank you in advance.

  2. #2
    Hyperactive Member
    Join Date
    May 2000
    Location
    Or
    Posts
    316
    Yes. There are a number of ways, but this is probably the easiest:

    Code:
    Open "c:\windows\desktop\testfile.txt" for Append as #1
         'If you use Write #1, the saved text will be deliminated by quotes.
         Print #1, "This is just a test" & vbcrlf
    Close #1

    Hope this helps.


    (Using VB6 SP3)

  3. #3

    Thread Starter
    Junior Member
    Join Date
    Jul 2000
    Posts
    29

    Talking Ahhhh, ok.

    Yup, Thanks. That works just fine!

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