semi colon

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • hoggy
    New Member
    • Jan 2008
    • 9

    semi colon

    hi there
    i want to print a semicolon using vb without using a semicolon anywher in the code
    like form1.print ;
    can u try this
  • kadghar
    Recognized Expert Top Contributor
    • Apr 2007
    • 1302

    #2
    Originally posted by hoggy
    hi there
    i want to print a semicolon using vb without using a semicolon anywher in the code
    like form1.print ;
    can u try this
    you can use the ASCII code, i think is 59:

    form1.print chr(59)

    HTH

    Comment

    Working...