I'm using Visual Studio 2008, and when I need to add quotes in a message, it always thinks I'm closing my message.
Here's my code:
Code: Select all
MessageBox.Show("Some one said to me \"Oh Dear\"")
Code: Select all
MessageBox.Show("Some one said to me \"Oh Dear\"")
Code: Select all
MessageBox.Show("Someone said to me " & Chr(34) & "Oh Dear" & Chr(34))