From: "Pavlos" Newsgroups: comp.os.msdos.djgpp Subject: Re: fonts in dos??? Date: Wed, 4 Aug 1999 03:26:00 +0300 Organization: An OTEnet S.A. customer Lines: 24 Message-ID: <7o81bl$dd3$1@newssrv.otenet.gr> References: <7o6spi$4fq$1 AT planja DOT arnes DOT si> NNTP-Posting-Host: dram-a02.otenet.gr X-Trace: newssrv.otenet.gr 933726389 13731 195.167.113.225 (4 Aug 1999 00:26:29 GMT) X-Complaints-To: abuse AT otenet DOT gr NNTP-Posting-Date: 4 Aug 1999 00:26:29 GMT X-Newsreader: Microsoft Outlook Express 4.72.3110.1 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com >hello, >what fonts are used in dos? >i need this info to find the charcode of a sign used for upper right corner >of a frame border (double line).. >Thanks, >Matej > This little program will print all characters from 32 to 255. You have RHIDE right? In the upper-left corner (left from the file menu) there's another menu. Select ASCII TABLE. int main(void) { int i; for(i=32; i<256; i++) printf("%3i: %c ", i, i); } Pavlos