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 ?
![]() |
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 ?
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)
All times are GMT -7. The time now is 10:25 PM. |