Results 1 to 2 of 2

Thread: Double Quotes Inserting String From Clipboard

  1. #1

    Thread Starter
    New Member
    Join Date
    Dec 1999
    Location
    Milford, NH
    Posts
    15

    Post

    I want to get rid of the double quotes when inserting from the clipboard into a string.
    Tried Left$ and Right$ but the double quotes are outside the string.

  2. #2
    Fanatic Member
    Join Date
    Feb 2000
    Location
    Japan
    Posts
    840

    Post

    try using the Replace function after it is copied to the string

    ie
    Dim Clip as string

    'after copying the clipboard to the string
    Clip = replace(Clip, chr(34),"")

    Have a good one

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