Results 1 to 4 of 4

Thread: [RESOLVED] Print Ascii Character On The Screen

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Sep 2006
    Location
    Scotland
    Posts
    1,054

    Resolved [RESOLVED] Print Ascii Character On The Screen

    Here is another similar question. How would you get it to print the character of an ascii code? Meaning something like Asc(65) would print "A" on screen?



    Never mind i got it....

  2. #2
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Print Ascii Character On The Screen

    Split from an old thread.

    What was your solution?

  3. #3
    PowerPoster Code Doc's Avatar
    Join Date
    Mar 2007
    Location
    Omaha, Nebraska
    Posts
    2,354

    Re: Print Ascii Character On The Screen

    Code:
    Dim AscChar as Integer
    AscChar = 65
    MsgBox "My Ascii character is " & Chr(AscChar)
    Just be sure AscChar < 256.
    Doctor Ed

  4. #4

    Thread Starter
    Frenzied Member
    Join Date
    Sep 2006
    Location
    Scotland
    Posts
    1,054

    Re: Print Ascii Character On The Screen

    It was only to satisfy my curiosity. I couldn't remember how to do it and a websearch revealed nothing. All i used was: Chr(number)

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