How the hell do you display special characters like " in a text box? say how would i output (he said "im sick off this" in a dull tone). is there a character (like \, / or #) that will alow speach marks to be outputted.
Printable View
How the hell do you display special characters like " in a text box? say how would i output (he said "im sick off this" in a dull tone). is there a character (like \, / or #) that will alow speach marks to be outputted.
Use chr(34)
To list all of the characters:
Set Textbox to multiline.
Code:For i = 33 to 255
Text1.text = Text1.text & Chr(i) & vbCrLf
Next i