GUI for C++ programme in Visual Studio .NET

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Pekka Jarvela

    GUI for C++ programme in Visual Studio .NET

    I am a beginner and have written a C++ programme in Visual Studio
    ..NET. Now, programme is for time being Console application (= works in
    DOS window). I would however like that it had graphical user
    interface. Now, is there an easy way to create one in .NET
    environment? It should preferably have following properties:

    1. Fields for inputting variable values.
    2. Drop down menu for selecting working directory.

    What would you recommend?

    Pekka
  • Ioannis Vranos

    #2
    Re: GUI for C++ programme in Visual Studio .NET

    "Pekka Jarvela" <pekkajarvela@e mail.com> wrote in message
    news:6780c2c2.0 404260606.49f0e bd0@posting.goo gle.com...[color=blue]
    > I am a beginner and have written a C++ programme in Visual Studio
    > .NET. Now, programme is for time being Console application (= works in
    > DOS window). I would however like that it had graphical user
    > interface. Now, is there an easy way to create one in .NET
    > environment? It should preferably have following properties:
    >
    > 1. Fields for inputting variable values.
    > 2. Drop down menu for selecting working directory.
    >
    > What would you recommend?[/color]



    A suggestion. First spend some time to learn the basics of C++ core language
    and its standard library. Then you can move to learn whatever system
    specific API (library) you want and use it to create system-specific
    applications (e.g. GUI ones like .NET for Windows, QT for GNU/Linux and so
    on).

    Learning how to use an API after you have learned the language is not
    difficult.






    Ioannis Vranos

    Comment

    • Christopher Benson-Manica

      #3
      Re: GUI for C++ programme in Visual Studio .NET

      In comp.lang.c++ Pekka Jarvela <pekkajarvela@e mail.com> wrote:
      [color=blue]
      > I am a beginner and have written a C++ programme in Visual Studio
      > .NET. Now, programme is for time being Console application (= works in
      > DOS window). I would however like that it had graphical user
      > interface. Now, is there an easy way to create one in .NET
      > environment? It should preferably have following properties:[/color]
      [color=blue]
      > What would you recommend?[/color]

      Reading the following:




      --
      Christopher Benson-Manica | I *should* know what I'm talking about - if I
      ataru(at)cybers pace.org | don't, I need to know. Flames welcome.

      Comment

      • Wellu Mäkinen

        #4
        Re: GUI for C++ programme in Visual Studio .NET

        On 2004-04-26, Pekka Jarvela <pekkajarvela@e mail.com> wrote:[color=blue]
        > I am a beginner and have written a C++ programme in Visual Studio
        > .NET. Now, programme is for time being Console application (= works in
        > DOS window). I would however like that it had graphical user
        > interface. Now, is there an easy way to create one in .NET
        > environment? It should preferably have following properties:
        >
        > 1. Fields for inputting variable values.
        > 2. Drop down menu for selecting working directory.
        >
        > What would you recommend?[/color]

        A different newsgroup ;)

        --
        |||
        (0-0)
        +--------oOO--(_)--OOo----------------------------+
        | Wellu Mäkinen www.wellu.0rg |
        | |
        | No tears please, it's a waste of good suffering |
        +-------------------------------------------------+

        Comment

        • Will

          #5
          Re: GUI for C++ programme in Visual Studio .NET

          pekkajarvela@em ail.com (Pekka Jarvela) wrote in message news:<6780c2c2. 0404260606.49f0 ebd0@posting.go ogle.com>...[color=blue]
          > I am a beginner and have written a C++ programme in Visual Studio
          > .NET. Now, programme is for time being Console application (= works in
          > DOS window). I would however like that it had graphical user
          > interface. Now, is there an easy way to create one in .NET
          > environment? It should preferably have following properties:
          >
          > 1. Fields for inputting variable values.
          > 2. Drop down menu for selecting working directory.
          >
          > What would you recommend?
          >
          > Pekka[/color]


          How about good old MFC.

          Comment

          • John M. Gabriele

            #6
            Re: GUI for C++ programme in Visual Studio .NET

            Will wrote:[color=blue]
            > pekkajarvela@em ail.com (Pekka Jarvela) wrote in message news:<6780c2c2. 0404260606.49f0 ebd0@posting.go ogle.com>...
            >[color=green]
            >>I am a beginner and have written a C++ programme in Visual Studio
            >>.NET. Now, programme is for time being Console application (= works in
            >>DOS window). I would however like that it had graphical user
            >>interface. Now, is there an easy way to create one in .NET
            >>environment ? It should preferably have following properties:
            >>
            >>1. Fields for inputting variable values.
            >>2. Drop down menu for selecting working directory.
            >>
            >>What would you recommend?
            >>
            >>Pekka[/color]
            >
            >
            >
            > How about good old MFC.[/color]

            Or, for something with much less cholesterol, maybe try fltk



            --
            --- remove zees if contacting via email ---

            Comment

            Working...