The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: Eric4ever on April 11, 2006, 08:28:59 AM

Title: How to display ASCII character in EditText?
Post by: Eric4ever on April 11, 2006, 08:28:59 AM
Plan:
    Input: 48 as Dec or 30 as Hex or 60 as Oct
it Output the ASCII Character: 0(Digital Zero)

How to do it? ::)
Title: Re: How to display ASCII character in EditText?
Post by: Mark Jones on April 11, 2006, 04:23:36 PM
Eric, you've almost answered your own question. :bg

Look here about middle of the page:  http://en.wikipedia.org/wiki/ASCII_table

If you want to print a "0" character, what binary/decimal/hex value is that?
What then, do you have to add to your zero value to get a zero character? :toothy
Title: Re: How to display ASCII character in EditText?
Post by: Eric4ever on April 12, 2006, 02:43:04 AM
Quote from: Mark Jones on April 11, 2006, 04:23:36 PM
Eric, you've almost answered your own question. :bg

Look here about middle of the page:  http://en.wikipedia.org/wiki/ASCII_table

If you want to print a "0" character, what binary/decimal/hex value is that?
What then, do you have to add to your zero value to get a zero character? :toothy

:green  THX