Good resources for writing console style applications for Windows? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T20:41:45Zhttp://stackoverflow.com/feeds/question/43267http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/43267/good-resources-for-writing-console-style-applications-for-windows6Good resources for writing console style applications for Windows?minty2008-09-04T07:13:40Z2009-10-12T19:31:06Z
<p>For certain programs nothing beats the command line. Unfortunately, I have never seen good documentation or examples on how to write console applications that go beyond "Hello World". I'm interested in making console apps like <a href="http://en.wikipedia.org/wiki/Vim%5F%28text%5Feditor%29" rel="nofollow">Vim</a> or <a href="http://en.wikipedia.org/wiki/Emacs" rel="nofollow">Emacs</a>. Well not exactly like Vim or Emacs but one that takes over the entire command prompt while it is in use and then after you exit it leaves no trace behind. I know that on Unix there is the <a href="http://en.wikipedia.org/wiki/Curses%5F%28programming%5Flibrary%29" rel="nofollow">curses library</a> but for Windows? ...</p>
http://stackoverflow.com/questions/43267/good-resources-for-writing-console-style-applications-for-windows/43275#432752Answer by Brad Wilson for Good resources for writing console style applications for Windows?Brad Wilson2008-09-04T07:22:08Z2008-09-04T07:22:08Z<p><a href="http://pdcurses.sourceforge.net/" rel="nofollow">PDCurses</a> works on Win32.</p>
http://stackoverflow.com/questions/43267/good-resources-for-writing-console-style-applications-for-windows/43277#432771Answer by eed3si9n for Good resources for writing console style applications for Windows?eed3si9n2008-09-04T07:23:20Z2008-09-04T07:23:20Z<p>I found <a href="http://msdn.microsoft.com/en-us/library/ms682073.aspx" rel="nofollow">List of Console Functions</a> on msdn, <a href="http://pdcurses.sourceforge.net/" rel="nofollow">PDCurses</a>, and <a href="http://www.effbot.org/zone/console-handbook.htm" rel="nofollow">The Console Module</a>.</p>
http://stackoverflow.com/questions/43267/good-resources-for-writing-console-style-applications-for-windows/43281#432810Answer by Sasayins for Good resources for writing console style applications for Windows?Sasayins2008-09-04T07:26:26Z2009-10-12T19:31:06Z<p>In Windows or DOS, I used the conio library from <a href="http://en.wikipedia.org/wiki/Borland" rel="nofollow">Borland</a>. It's very old but fine enough for a beginner like me.</p>
http://stackoverflow.com/questions/43267/good-resources-for-writing-console-style-applications-for-windows/43286#432860Answer by robsoft for Good resources for writing console style applications for Windows?robsoft2008-09-04T07:32:25Z2008-09-04T07:32:25Z<p>You can certainly write that kind of application with Delphi, which has reasonable commandline support. People often overlook that Delphi can build any kind of Windows executable, not just GUI apps.</p>
<p>I don't know off-hand if the free 'Turbo' edition of Delphi has anything cobbled into it to PREVENT you from using it to build console apps - I would have thought it would be fine for this kind of thing.</p>
http://stackoverflow.com/questions/43267/good-resources-for-writing-console-style-applications-for-windows/43497#434970Answer by dcraggs for Good resources for writing console style applications for Windows?dcraggs2008-09-04T11:16:11Z2008-09-04T11:16:11Z<p>As Robsoft says Delphi would be a good start. There is Turbo Delphi (Pascal based) or Turbo C++ both free editions.</p>
<p>web site here.</p>
<p><a href="http://www.turboexplorer.com/" rel="nofollow">http://www.turboexplorer.com/</a></p>
http://stackoverflow.com/questions/43267/good-resources-for-writing-console-style-applications-for-windows/43559#435590Answer by jms for Good resources for writing console style applications for Windows?jms2008-09-04T11:54:02Z2008-09-04T11:54:02Z<p>Check out some of the <a href="http://www.go-mono.com/docs/index.aspx?link=N:Mono.Terminal" rel="nofollow">mono libs</a>. They have a great one to parse command line arguments but can't remember the namespace.<br />
Miguel just posted some <a href="http://tirania.org/blog/" rel="nofollow">terminal code</a> as well. </p>
http://stackoverflow.com/questions/43267/good-resources-for-writing-console-style-applications-for-windows/91937#919370Answer by Loesje for Good resources for writing console style applications for Windows?Loesje2008-09-18T12:10:18Z2009-10-12T19:02:54Z<p>You could also try <a href="http://www.freepascal.org/" rel="nofollow">Free Pascal</a>. It is a free ((L)<a href="http://en.wikipedia.org/wiki/GNU%5FGeneral%5FPublic%5FLicense" rel="nofollow">GPL</a>) <a href="http://en.wikipedia.org/wiki/Object%5FPascal" rel="nofollow">Object Pascal</a> compiler which is compatible with the <a href="http://en.wikipedia.org/wiki/CodeGear%5FDelphi" rel="nofollow">Delphi</a>-compiler. It has an console-based IDE, which proves that you can make very good console-applications with it, and which you can use as an example.</p>
<p>If you want to use a graphical IDE to build your console-application, you can download the <a href="http://lazarus.freepascal.org" rel="nofollow">Lazarus</a> IDE. </p>
<p>As a bonus your application will run on Windows (32/64 bit), Linux, Mac OS X, FreeBSD, Solaris etc...</p>
http://stackoverflow.com/questions/43267/good-resources-for-writing-console-style-applications-for-windows/293787#2937871Answer by Rob Kam for Good resources for writing console style applications for Windows?Rob Kam2008-11-16T11:12:45Z2009-10-12T18:09:38Z<p>There is a small but good tutorial on using C++ for the Windows console at <a href="http://www.benryves.com/tutorials/?t=winconsole&c=all" rel="nofollow">www.benryves.com/tutorials/?t=winconsole&c=all</a> going as far as coding a simple painting program.</p>