Good resources for writing console style applications for Windows?

后端 未结 10 716
醉梦人生
醉梦人生 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:40

    This is the best tool for it I've ever seen!!
    1) Create any application using VB6 IDE
    2) Convert it to Console Application, using THIS!

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

    You could also try Free Pascal. It is a free ((L)GPL) Object Pascal compiler which is compatible with the Delphi-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.

    If you want to use a graphical IDE to build your console-application, you can download the Lazarus IDE.

    As a bonus your application will run on Windows (32/64 bit), Linux, Mac OS X, FreeBSD, Solaris etc...

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

    As Robsoft says Delphi would be a good start. There is Turbo Delphi (Pascal based) or Turbo C++ both free editions.

    web site here.

    http://www.turboexplorer.com/

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

    Check out some of the mono libs. They have a great one to parse command line arguments but can't remember the namespace.
    Miguel just posted some terminal code as well.

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

    For ncurses-like library/framework on Windows, I'll highly suggest to get your hand dirty with PDCurses.

    If you trying/using C#, there's Curses-Sharp.

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

    In Windows or DOS, I used the conio library from Borland. It's very old but fine enough for a beginner like me.

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