Results 1 to 3 of 3

Thread: special characters

  1. #1
    Guest

    Post

    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.

  2. #2
    Lively Member
    Join Date
    Jul 2000
    Location
    Ireland, Dublin
    Posts
    76

    Talking

    Use chr(34)
    ---------------------------------
    TopMan
    ---------------------------------

  3. #3
    Guest
    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width