Good resources for writing console style applications for Windows?

后端 未结 10 717
醉梦人生
醉梦人生 2021-01-02 07:58

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 \"He

相关标签:
10条回答
  • 2021-01-02 08:51

    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.

    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.

    0 讨论(0)
  • 2021-01-02 08:52

    I found List of Console Functions on msdn, PDCurses, and The Console Module.

    0 讨论(0)
  • 2021-01-02 08:57

    There is a small but good tutorial on using C++ for the Windows console at www.benryves.com/tutorials/?t=winconsole&c=all going as far as coding a simple painting program.

    0 讨论(0)
  • 2021-01-02 08:58

    PDCurses works on Win32.

    0 讨论(0)
提交回复
热议问题