From: Ian Chapman Newsgroups: comp.os.msdos.djgpp Subject: Re: Need help with fonts. Date: Fri, 13 Nov 1998 10:46:31 -0500 Organization: Nortel Lines: 30 Message-ID: <364C5457.43B03C2C@nt.com> References: <364c3872 DOT 63217828 AT nntp DOT ix DOT netcom DOT com> NNTP-Posting-Host: bcarib90.ca.nortel.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: Mozilla 4.06 [en] (Win95; I) To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Err well, that's a bit involved. First the Keyboard puts out scan codes to the PC. The scan codes, well there is one for a key make and one for a key release. There is/was a micro (8035 one chipper) on the mother board that translated scan codes ... I think into what you get using get() scanf, cin and all that c stuff. ASCI II is very limited to err well a-zA-Z0-9 and a few others. Esentially English alphabet only. Straight text communications for an ASR33 shaker teletyype 1950 vintage. It replaced morse code. In a PC there must be lots and lots of character codes used world wide. All the non English languages plus special symbols Math, Chemical, Legal, etc. Throw out your ASCI code and figure out scan codes. If you look up some of the bios calls you should find them. Better still find an old DOD 1.0 manual from IBM it may list them for a PC and PCAT which are different. Hope I've confused the hell out of you. Regards Ian. wavemist AT ix DOT netcom DOT com wrote: > > Hello everyone. > > I've got a slight problem....I need to implement a slider bar into a > program that I am writing. I have a book that lists the ASCII table > from 0 to 255, but for some reason there is no up-arrow, or > down-arrow. (Like the ones on Rhide's slider bars.) All the books I > have on fonts talk about graphical modes, and not text mode. Could > somone please tell me how to print those characters to the screen in > text mode?