Path: utzoo!news-server.csri.toronto.edu!rutgers!cs.utexas.edu!wuarchive!sdd.hp.com!hplabs!hpda!hpcupt1!swh From: swh@hpcupt1.cup.hp.com (Steve Harrold) Newsgroups: comp.os.msdos.programmer Subject: Re: Small utility to disable VGA border Message-ID: <68410002@hpcupt1.cup.hp.com> Date: 4 Mar 91 21:56:01 GMT References: <1991Mar4.013815.6378@athena.mit.edu> Organization: Hewlett Packard, Cupertino Lines: 12 Re: Removing the VGA border color Try this 2-line C program: #include main() { puts ("\x1b[50m") ; } Assembler gurus will want to translate this to a very short equivalent ASM source code. This works only if ANSI.SYS or its equivalent is present. BUT it is screen-hardware independent!!!