egdotnet Posted July 18, 2004 Posted July 18, 2004 How do you insert an apostrophe as part of a text label without having it turn into a comment? Quote
eramgarden Posted July 19, 2004 Posted July 19, 2004 in the code behind? maybe use replace to replace " with ' Quote
*Gurus* Derek Stone Posted July 19, 2004 *Gurus* Posted July 19, 2004 Label1.Text = "The quick brown fox jumped over the lazy dog's bone." Label1.Text = """Four score and seven years ago...""" Quote Posting Guidelines
VBAHole22 Posted July 19, 2004 Posted July 19, 2004 YOu can also use the ASCII equivalent which I believe is Char(32) or is it 34.......no 39! Quote Wanna-Be C# Superstar
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.