PDA

View Full Version : What is the name of the symbol "


waseem1345
Jun 15, 2012, 02:22 PM
I'm creating a project at vb 2012 - so I need to know how to add this

textbox1.text = " " "
i want the textbox text to be " how can I add it ?

jsblume
Sep 28, 2012, 11:16 AM
What makes this tricky is that " is a special character. There are two ways to do this.

Use four " characters.
TextBox1.Text = """" '

TextBox1.Text = Chr$(34)