H hydeyho Registered User. Local time Today, 00:08 Joined Mar 1, 2007 Messages 31 Apr 2, 2007 #1 I'm compiling a string which needs to display " at various points but vb obviously thinks this is the end of the string. How do I get vb to recognise it as part of a string and not the end of the string?
I'm compiling a string which needs to display " at various points but vb obviously thinks this is the end of the string. How do I get vb to recognise it as part of a string and not the end of the string?
R RoyVidar Registered User. Local time Today, 01:08 Joined Sep 25, 2000 Messages 805 Apr 2, 2007 #2 Double it up or concatenate using chr function - test it in the immediate window (ctrl+g) ? "this is "" a test" ? "this is " & chr$(34) & " a test"
Double it up or concatenate using chr function - test it in the immediate window (ctrl+g) ? "this is "" a test" ? "this is " & chr$(34) & " a test"
H hydeyho Registered User. Local time Today, 00:08 Joined Mar 1, 2007 Messages 31 Apr 2, 2007 #3 Thanks, works great!