Ask Me Help Desk

Ask Me Help Desk (https://www.askmehelpdesk.com/forum.php)
-   Visual Basic (https://www.askmehelpdesk.com/forumdisplay.php?f=469)
-   -   What is the name of the symbol " (https://www.askmehelpdesk.com/showthread.php?t=671302)

  • Jun 15, 2012, 02:22 PM
    waseem1345
    what is the name of the symbol "
    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 ?
  • Sep 28, 2012, 11:16 AM
    jsblume
    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.