From: AndrewJ Newsgroups: comp.os.msdos.djgpp Subject: Re: Common DOS programs in DJGPP Message-ID: References: X-Newsreader: Forte Agent 1.7/32.534 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 18 Date: Thu, 14 Sep 2000 17:10:09 GMT NNTP-Posting-Host: 24.42.120.18 X-Complaints-To: abuse AT home DOT net X-Trace: news3.rdc1.on.home.com 968951409 24.42.120.18 (Thu, 14 Sep 2000 10:10:09 PDT) NNTP-Posting-Date: Thu, 14 Sep 2000 10:10:09 PDT Organization: Excite AT Home - The Leader in Broadband To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com On Thu, 14 Sep 2000 05:56:28 GMT, leeast AT home DOT com (Lee Eastman) wrote: >There has been much confusion because of the 5.5 in the name. The compiler IS >the command line compiler that comes with Borland C++ Builder Version 5, which >is a 32 bit program only. It can compile 'console' programs, which look and >act like DOS programs, but must run in a DOS box in WIN9x, as well as Win9x >GUI type programs. There are a few websites by people who have adapted the IDE >from the OLD (pre-Builder) Borland C++ Ver. 5 to use the NEW 5.5 compiler, >but it still only produces 32 bit windows programs. If you want to get technical, console programs don't run in a DOS box. They run in Win32 console mode. There's an importance between the two (virtual DOS sessions must provide access to the low-level DOS API, whereas NT console executables don't). Try writing to CON: from a console application and watch it fail because CON: doesn't exist there. -- AndrewJ