Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
  1. Home
  2. General Programming
  3. Algorithms
  4. When should I choose Windows application or Console application?

When should I choose Windows application or Console application?

Scheduled Pinned Locked Moved Algorithms
csharpvisual-studiotutorialquestion
27 Posts 7 Posters 413 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C Offline
    C Offline
    ComCoderCsharp
    wrote on last edited by
    #1

    Hi Guys I am relative new to Visual Studio... I'm about to do some calculations on my data and I was wondering if anybody can tell me the difference between choosing a Windows application or Console application when starting a project. Seems to me to be easier to implement my algorithms in a console, because it is possible to get the data output in the command-prompt (don't know how to do this in an application) and when doing the GUI I could change it over to an application, is this possible..? Thanks in advance AL

    D P R 3 Replies Last reply
    0
    • C ComCoderCsharp

      Hi Guys I am relative new to Visual Studio... I'm about to do some calculations on my data and I was wondering if anybody can tell me the difference between choosing a Windows application or Console application when starting a project. Seems to me to be easier to implement my algorithms in a console, because it is possible to get the data output in the command-prompt (don't know how to do this in an application) and when doing the GUI I could change it over to an application, is this possible..? Thanks in advance AL

      D Offline
      D Offline
      David Crow
      wrote on last edited by
      #2

      ComCoderCsharp wrote:

      Seems to me to be easier to implement my algorithms in a console...

      Generally speaking, algorithms are not governed/affected by platforms. Perhaps you are referring to something completely different.


      "Approved Workmen Are Not Ashamed" - 2 Timothy 2:15

      "Judge not by the eye but by the heart." - Native American Proverb

      R 1 Reply Last reply
      0
      • D David Crow

        ComCoderCsharp wrote:

        Seems to me to be easier to implement my algorithms in a console...

        Generally speaking, algorithms are not governed/affected by platforms. Perhaps you are referring to something completely different.


        "Approved Workmen Are Not Ashamed" - 2 Timothy 2:15

        "Judge not by the eye but by the heart." - Native American Proverb

        R Offline
        R Offline
        Roger Wright
        wrote on last edited by
        #3

        I think his point may be that in a console app you don't have to waste 80% of your time programming around the Windows overhead. For a straight "Run" type app, a console program is far more efficient.

        "...a photo album is like Life, but flat and stuck to pages." - Shog9

        1 Reply Last reply
        0
        • C ComCoderCsharp

          Hi Guys I am relative new to Visual Studio... I'm about to do some calculations on my data and I was wondering if anybody can tell me the difference between choosing a Windows application or Console application when starting a project. Seems to me to be easier to implement my algorithms in a console, because it is possible to get the data output in the command-prompt (don't know how to do this in an application) and when doing the GUI I could change it over to an application, is this possible..? Thanks in advance AL

          P Offline
          P Offline
          PIEBALDconsult
          wrote on last edited by
          #4

          Sounds like you want a console application.

          1 Reply Last reply
          0
          • C ComCoderCsharp

            Hi Guys I am relative new to Visual Studio... I'm about to do some calculations on my data and I was wondering if anybody can tell me the difference between choosing a Windows application or Console application when starting a project. Seems to me to be easier to implement my algorithms in a console, because it is possible to get the data output in the command-prompt (don't know how to do this in an application) and when doing the GUI I could change it over to an application, is this possible..? Thanks in advance AL

            R Offline
            R Offline
            Rilhas
            wrote on last edited by
            #5

            I think you are trying to determine the diference between a Win32 application and a console application, right? There is a third option, which is an MFC application. If you justo compute data then console is grat and MFC too. Simple Win32 applications start without any interface, so it will be dificult to interact with the users, even for a simple printf! So, I would advise you to use console or MFC. Console is simpler and standard, MFC is easier if your input is composed of many parts with numbers, buttons, checkboxes, etc. If you know nothing about MFC then your only real option is console. I hope this helps, Rilhas

            J 1 Reply Last reply
            0
            • R Rilhas

              I think you are trying to determine the diference between a Win32 application and a console application, right? There is a third option, which is an MFC application. If you justo compute data then console is grat and MFC too. Simple Win32 applications start without any interface, so it will be dificult to interact with the users, even for a simple printf! So, I would advise you to use console or MFC. Console is simpler and standard, MFC is easier if your input is composed of many parts with numbers, buttons, checkboxes, etc. If you know nothing about MFC then your only real option is console. I hope this helps, Rilhas

              J Offline
              J Offline
              Jeremy Falcon
              wrote on last edited by
              #6

              Rilhas wrote:

              Simple Win32 applications start without any interface, so it will be dificult to interact with the users, even for a simple printf!

              Same thing with MFC. ;) Also, the project wizards for VS have long since generated skeleton apps for both Win32 and MFC. Don't get me wrong, I have nothing against MFC; I just don't want people to be steered wrong.

              Jeremy Falcon "It's a good thing to do and a tasty way to do it." - Wilford Brimley[^]

              R 1 Reply Last reply
              0
              • J Jeremy Falcon

                Rilhas wrote:

                Simple Win32 applications start without any interface, so it will be dificult to interact with the users, even for a simple printf!

                Same thing with MFC. ;) Also, the project wizards for VS have long since generated skeleton apps for both Win32 and MFC. Don't get me wrong, I have nothing against MFC; I just don't want people to be steered wrong.

                Jeremy Falcon "It's a good thing to do and a tasty way to do it." - Wilford Brimley[^]

                R Offline
                R Offline
                Rilhas
                wrote on last edited by
                #7

                I'm sorry, but that is not true. An MFC application is much easier to startup that Win32. An MFC application skeleton will typically create a window for you, which is the hardest step. Then you visually add a text box or whatever, and output to it using SetDlgItemText(). This is very simple. The corresponding simplest alternative in raw Win32 is the MessaBox (since we don't want to create a normal window) and this is not really equivalent because the program stops until the message box is dismissed. The same applies to adding buttons and the like, which is done visually and a function is created for you. It is all automatic. I've been programming with MFC for years now, and I never learned how to do it... that goes to show how easy it is. My application work and allow data input and output, buttons, sliders, etc, without ever mastering MFC. With raw Win32 this would require much more work than I ever had with MFC. So, I don't think I'm steering anyone the wrong way. On the contrary, I believe that anyone who needs a console application may do it with MFC. Interaction will surelly be easier, since making a bunch of text boxes and a start button is simpler and easier than a bunch of scanf's, and allows for an easier user interaction. I can send you a simple hello world application based on a skeleton to which I add just 2 or 3 extra lines. With another 3 or 4 lines I can show the equivalent to scanf for inputing text. I bet you cannot do the same starting from a Win32 skeleton. At leaste not with lines as short as mine! In this sense MFC does rival to console applications (in the low number of lines required to startup a program). Rogério Rilhas PS: I assume the use of VC6 which has skeletons for both MFC and Win32, and what I say above applies to this scenario. VC7 or VC8 may have other skeletons (more ellaborate) for Win32, but I trust that even with these newer IDE's it will always be simpler to use MFC instead of Win32.

                J 2 Replies Last reply
                0
                • R Rilhas

                  I'm sorry, but that is not true. An MFC application is much easier to startup that Win32. An MFC application skeleton will typically create a window for you, which is the hardest step. Then you visually add a text box or whatever, and output to it using SetDlgItemText(). This is very simple. The corresponding simplest alternative in raw Win32 is the MessaBox (since we don't want to create a normal window) and this is not really equivalent because the program stops until the message box is dismissed. The same applies to adding buttons and the like, which is done visually and a function is created for you. It is all automatic. I've been programming with MFC for years now, and I never learned how to do it... that goes to show how easy it is. My application work and allow data input and output, buttons, sliders, etc, without ever mastering MFC. With raw Win32 this would require much more work than I ever had with MFC. So, I don't think I'm steering anyone the wrong way. On the contrary, I believe that anyone who needs a console application may do it with MFC. Interaction will surelly be easier, since making a bunch of text boxes and a start button is simpler and easier than a bunch of scanf's, and allows for an easier user interaction. I can send you a simple hello world application based on a skeleton to which I add just 2 or 3 extra lines. With another 3 or 4 lines I can show the equivalent to scanf for inputing text. I bet you cannot do the same starting from a Win32 skeleton. At leaste not with lines as short as mine! In this sense MFC does rival to console applications (in the low number of lines required to startup a program). Rogério Rilhas PS: I assume the use of VC6 which has skeletons for both MFC and Win32, and what I say above applies to this scenario. VC7 or VC8 may have other skeletons (more ellaborate) for Win32, but I trust that even with these newer IDE's it will always be simpler to use MFC instead of Win32.

                  J Offline
                  J Offline
                  Jeremy Falcon
                  wrote on last edited by
                  #8

                  Rilhas wrote:

                  I'm sorry, but that is not true. An MFC application is much easier to startup that Win32.

                  You're arguing apples to oranges. I never said MFC wasn't easier. You said, and I quote, "Simple Win32 applications start without any interface, so it will be dificult to interact with the users, even for a simple printf!" To that I said it's not true. I never said MFC wasn't easier to use.

                  Rilhas wrote:

                  An MFC application skeleton will typically create a window for you, which is the hardest step. Then you visually add a text box or whatever, and output to it using SetDlgItemText(). This is very simple. The corresponding simplest alternative in raw Win32 is the MessaBox (since we don't want to create a normal window) and this is not really equivalent because the program stops until the message box is dismissed.

                  No offense, but you must be inexperienced. You may wish to try out that project wizard again for a Win32 app and notice it will create a window - which is what I said. Also, the dialog editor applies exactly the same way as it does for a MFC project. What you're confusing is the amount of options the MFC wizard gives you compared to the Win32 one (ie, you can select a dialog-based app in the MFC wizard). Any dialog in Windows could make use of the editor no matter what framework. The Win32 wizard just gives you the option to create a normal window (think frame).

                  Rilhas wrote:

                  I can send you a simple hello world application based on a skeleton to which I add just 2 or 3 extra lines. With another 3 or 4 lines I can show the equivalent to scanf for inputing text. I bet you cannot do the same starting from a Win32 skeleton. At leaste not with lines as short as mine! In this sense MFC does rival to console applications (in the low number of lines required to startup a program).

                  This only proves you have no clue what you're even arguing about.

                  Jeremy Falcon "It's a good thing to do and a tasty way to do it." - Wilford Brimley[^]

                  R 1 Reply Last reply
                  0
                  • R Rilhas

                    I'm sorry, but that is not true. An MFC application is much easier to startup that Win32. An MFC application skeleton will typically create a window for you, which is the hardest step. Then you visually add a text box or whatever, and output to it using SetDlgItemText(). This is very simple. The corresponding simplest alternative in raw Win32 is the MessaBox (since we don't want to create a normal window) and this is not really equivalent because the program stops until the message box is dismissed. The same applies to adding buttons and the like, which is done visually and a function is created for you. It is all automatic. I've been programming with MFC for years now, and I never learned how to do it... that goes to show how easy it is. My application work and allow data input and output, buttons, sliders, etc, without ever mastering MFC. With raw Win32 this would require much more work than I ever had with MFC. So, I don't think I'm steering anyone the wrong way. On the contrary, I believe that anyone who needs a console application may do it with MFC. Interaction will surelly be easier, since making a bunch of text boxes and a start button is simpler and easier than a bunch of scanf's, and allows for an easier user interaction. I can send you a simple hello world application based on a skeleton to which I add just 2 or 3 extra lines. With another 3 or 4 lines I can show the equivalent to scanf for inputing text. I bet you cannot do the same starting from a Win32 skeleton. At leaste not with lines as short as mine! In this sense MFC does rival to console applications (in the low number of lines required to startup a program). Rogério Rilhas PS: I assume the use of VC6 which has skeletons for both MFC and Win32, and what I say above applies to this scenario. VC7 or VC8 may have other skeletons (more ellaborate) for Win32, but I trust that even with these newer IDE's it will always be simpler to use MFC instead of Win32.

                    J Offline
                    J Offline
                    Jeremy Falcon
                    wrote on last edited by
                    #9

                    The point is, without the wizards both Win32 AND MFC do not have a GUI/Window. With them, BOTH of them do. You need to recheck that Win32 app wizard if you think otherwise.

                    Jeremy Falcon "It's a good thing to do and a tasty way to do it." - Wilford Brimley[^]

                    R 1 Reply Last reply
                    0
                    • J Jeremy Falcon

                      Rilhas wrote:

                      I'm sorry, but that is not true. An MFC application is much easier to startup that Win32.

                      You're arguing apples to oranges. I never said MFC wasn't easier. You said, and I quote, "Simple Win32 applications start without any interface, so it will be dificult to interact with the users, even for a simple printf!" To that I said it's not true. I never said MFC wasn't easier to use.

                      Rilhas wrote:

                      An MFC application skeleton will typically create a window for you, which is the hardest step. Then you visually add a text box or whatever, and output to it using SetDlgItemText(). This is very simple. The corresponding simplest alternative in raw Win32 is the MessaBox (since we don't want to create a normal window) and this is not really equivalent because the program stops until the message box is dismissed.

                      No offense, but you must be inexperienced. You may wish to try out that project wizard again for a Win32 app and notice it will create a window - which is what I said. Also, the dialog editor applies exactly the same way as it does for a MFC project. What you're confusing is the amount of options the MFC wizard gives you compared to the Win32 one (ie, you can select a dialog-based app in the MFC wizard). Any dialog in Windows could make use of the editor no matter what framework. The Win32 wizard just gives you the option to create a normal window (think frame).

                      Rilhas wrote:

                      I can send you a simple hello world application based on a skeleton to which I add just 2 or 3 extra lines. With another 3 or 4 lines I can show the equivalent to scanf for inputing text. I bet you cannot do the same starting from a Win32 skeleton. At leaste not with lines as short as mine! In this sense MFC does rival to console applications (in the low number of lines required to startup a program).

                      This only proves you have no clue what you're even arguing about.

                      Jeremy Falcon "It's a good thing to do and a tasty way to do it." - Wilford Brimley[^]

                      R Offline
                      R Offline
                      Rilhas
                      wrote on last edited by
                      #10

                      You are missing the point. MFC is easier. MFC cannot be started without an interface. Win32 can. You can start Win32 with an interface, but it is much more hard to start a text interface. Of course this is the point, if comparing with console applications. So, don't forget, we are talking apples. Keep this in mind, and when you think I'm stearing anyone the wrong way then don't start talking oranges. Try to compare CON/MFC/WIN32 and you will, inevitably, conclude that the first 2 are much easier than the latter to setup (with skeletons) and use (in text). So, you focused on the fact that it is possible to create a Win32 with a graphical interface, and lost focus that that is not the interface required for this comparison. You can then take the conversation through that lane, but you will be missing the point. I didn't mention that particular aspect because I thought is would be ovious (text interface, not graphical interface). And, again, don't forget the other benefits I mentioned like input text boxes and buttons. I'm not inexperienced, so I take no offense. You just missed the point, and so you didn't understand what I meant. Maybe a problem in my English since it is not my native language. If you try to create a Win32 project with a window (in VC6) a graphical interface is created. You go to the dialog editor and draw a little button, just like with MFC. Then you try to create a callback function (you will need to add a class and some more steps) and then you find out it doesn't compile. Typically CDialog is undefined. Typically MFC does not present these problems. So if you think Win32 is an alternative to MFC in dialog (and button and textbox) creation then you are, of course, missing the point, and taking the discussion back to oranges. No, I'm not condusing anything, I'm sure you are. But please: try to do an equivalent to printf and scanf in Win32 with VC6 with... say... 10 extra lines? 10 extra short lines? With a button, maybe? Or a checkbox? Please do, and then we will see which of us is confused. I know what I'm talking about. You are the one singing off-key here. And you are the one misleading people.

                      J 1 Reply Last reply
                      0
                      • J Jeremy Falcon

                        The point is, without the wizards both Win32 AND MFC do not have a GUI/Window. With them, BOTH of them do. You need to recheck that Win32 app wizard if you think otherwise.

                        Jeremy Falcon "It's a good thing to do and a tasty way to do it." - Wilford Brimley[^]

                        R Offline
                        R Offline
                        Rilhas
                        wrote on last edited by
                        #11

                        MFC application without window? You have a wizard for that? I think you should recheck your IDE's options. With wizards both have a graphical interface. One of them close to text interface (MFC) another much further away (Win32). Anyway, if you want to get really technical and argue that Win32 an also be used as a text interface then you will be right. I won't argue that, of course, because it is true. This discussion will just become pointless since that was not the objective of this discussion. I stated from the begining that MFC is an easy enough alternative to console, and you said that I was steering people wrong. All my other comments are always emphasizing simplicity, so why didn't you give up there? You argued that MFC is equivalent to Win32... and keep on arguing that. That is, to say the least, not useful. Recheck the meaning of printf.

                        J E 2 Replies Last reply
                        0
                        • R Rilhas

                          You are missing the point. MFC is easier. MFC cannot be started without an interface. Win32 can. You can start Win32 with an interface, but it is much more hard to start a text interface. Of course this is the point, if comparing with console applications. So, don't forget, we are talking apples. Keep this in mind, and when you think I'm stearing anyone the wrong way then don't start talking oranges. Try to compare CON/MFC/WIN32 and you will, inevitably, conclude that the first 2 are much easier than the latter to setup (with skeletons) and use (in text). So, you focused on the fact that it is possible to create a Win32 with a graphical interface, and lost focus that that is not the interface required for this comparison. You can then take the conversation through that lane, but you will be missing the point. I didn't mention that particular aspect because I thought is would be ovious (text interface, not graphical interface). And, again, don't forget the other benefits I mentioned like input text boxes and buttons. I'm not inexperienced, so I take no offense. You just missed the point, and so you didn't understand what I meant. Maybe a problem in my English since it is not my native language. If you try to create a Win32 project with a window (in VC6) a graphical interface is created. You go to the dialog editor and draw a little button, just like with MFC. Then you try to create a callback function (you will need to add a class and some more steps) and then you find out it doesn't compile. Typically CDialog is undefined. Typically MFC does not present these problems. So if you think Win32 is an alternative to MFC in dialog (and button and textbox) creation then you are, of course, missing the point, and taking the discussion back to oranges. No, I'm not condusing anything, I'm sure you are. But please: try to do an equivalent to printf and scanf in Win32 with VC6 with... say... 10 extra lines? 10 extra short lines? With a button, maybe? Or a checkbox? Please do, and then we will see which of us is confused. I know what I'm talking about. You are the one singing off-key here. And you are the one misleading people.

                          J Offline
                          J Offline
                          Jeremy Falcon
                          wrote on last edited by
                          #12

                          Rilhas wrote:

                          You are missing the point.

                          I'm not missing anything. What you said is incorrect primarily because you don't know what it is even that you're arguing, and you're arguing apples to oranges.

                          Rilhas wrote:

                          MFC is easier.

                          Can you at least read my posts before you start arguing?

                          Rilhas wrote:

                          MFC cannot be started without an interface.

                          More proof you don't know what you're talking about. At least get your terminology correct when you don't listen. You can create a MFC app without a GUI; however, the wizard doesn't give you that option.

                          Rilhas wrote:

                          So, you focused on the fact that it is possible to create a Win32 with a graphical interface, and lost focus that that is not the interface required for this comparison.

                          You mean the comparison that you made that didn't even address my point? You were talking about wizards and so was I. I even quoted that. Then, your next statement was about how MFC is easier, blah blah blah.

                          Rilhas wrote:

                          No, I'm not condusing anything, I'm sure you are. But please: try to do an equivalent to printf and scanf in Win32 with VC6 with... say... 10 extra lines? 10 extra short lines? With a button, maybe? Or a checkbox? Please do, and then we will see which of us is confused.

                          Ok, look I'll say this S-L-O-W-E-R! You're comparing apples to oranges just to argue a point I never made.

                          Rilhas wrote:

                          I know what I'm talking about. You are the one singing off-key here. And you are the one misleading people.

                          Yeah, for a beginner you're gonna have a difficult time with an attitude like that. Good luck, you'll need it.

                          Jeremy Falcon "It's a good thing to do and a tasty way to do it." - Wilford Brimley[^]

                          R 1 Reply Last reply
                          0
                          • R Rilhas

                            MFC application without window? You have a wizard for that? I think you should recheck your IDE's options. With wizards both have a graphical interface. One of them close to text interface (MFC) another much further away (Win32). Anyway, if you want to get really technical and argue that Win32 an also be used as a text interface then you will be right. I won't argue that, of course, because it is true. This discussion will just become pointless since that was not the objective of this discussion. I stated from the begining that MFC is an easy enough alternative to console, and you said that I was steering people wrong. All my other comments are always emphasizing simplicity, so why didn't you give up there? You argued that MFC is equivalent to Win32... and keep on arguing that. That is, to say the least, not useful. Recheck the meaning of printf.

                            J Offline
                            J Offline
                            Jeremy Falcon
                            wrote on last edited by
                            #13

                            Rilhas wrote:

                            MFC application without window? You have a wizard for that?

                            You really don't listen.

                            Rilhas wrote:

                            With wizards both have a graphical interface.

                            Nor do you know what you're even talking about.

                            Rilhas wrote:

                            I stated from the begining that MFC is an easy enough alternative to console, and you said that I was steering people wrong.

                            Bull, you said that the Win32 app wizard doesn't create a window. I said you're wrong. Maybe your English sucks - who knows.

                            Jeremy Falcon "It's a good thing to do and a tasty way to do it." - Wilford Brimley[^]

                            R 1 Reply Last reply
                            0
                            • J Jeremy Falcon

                              Rilhas wrote:

                              MFC application without window? You have a wizard for that?

                              You really don't listen.

                              Rilhas wrote:

                              With wizards both have a graphical interface.

                              Nor do you know what you're even talking about.

                              Rilhas wrote:

                              I stated from the begining that MFC is an easy enough alternative to console, and you said that I was steering people wrong.

                              Bull, you said that the Win32 app wizard doesn't create a window. I said you're wrong. Maybe your English sucks - who knows.

                              Jeremy Falcon "It's a good thing to do and a tasty way to do it." - Wilford Brimley[^]

                              R Offline
                              R Offline
                              Rilhas
                              wrote on last edited by
                              #14

                              Well, I do believe now that you lack the brain capacity to understand your mistakes. I don't think you can learn anything new until you retrace your steps and try the Win32 application that can serve as a console substitute. I'll wait for that Mr. Theory. Go back all the way to the begining and observe, carefully, that what I said is true from the start and that I wasn't misleading people. Then read on, carefully again, and observe that you just tried to defend your point of view, blindly, just to try not to look so bad. Too late. I do know. That comment is just ignorant. You don't know me at all, don't you think you better be quiet instead of speaking garbage? With wizards both have a graphical interface. You didn't know that? Do you know what graphical means? And interface? You English is not that good, I guess... Ididn't say without a window... I meant without an interface taking the remainder of the context: a text interface. I don't think my English failed there, your brain just wasn't able to pick up on the context. Anyway, I hope your Portuguese is better than my English.

                              J 1 Reply Last reply
                              0
                              • R Rilhas

                                Well, I do believe now that you lack the brain capacity to understand your mistakes. I don't think you can learn anything new until you retrace your steps and try the Win32 application that can serve as a console substitute. I'll wait for that Mr. Theory. Go back all the way to the begining and observe, carefully, that what I said is true from the start and that I wasn't misleading people. Then read on, carefully again, and observe that you just tried to defend your point of view, blindly, just to try not to look so bad. Too late. I do know. That comment is just ignorant. You don't know me at all, don't you think you better be quiet instead of speaking garbage? With wizards both have a graphical interface. You didn't know that? Do you know what graphical means? And interface? You English is not that good, I guess... Ididn't say without a window... I meant without an interface taking the remainder of the context: a text interface. I don't think my English failed there, your brain just wasn't able to pick up on the context. Anyway, I hope your Portuguese is better than my English.

                                J Offline
                                J Offline
                                Jeremy Falcon
                                wrote on last edited by
                                #15

                                Rilhas wrote:

                                Well, I do believe now that you lack the brain capacity to understand your mistakes.

                                Look, insults from a child don't really get on my nerves. Although you not listening does. But, whatever I'm sure you have paint to sniff so I won't keep you waiting too much longer with this post.

                                Rilhas wrote:

                                I don't think you can learn anything new until you retrace your steps and try the Win32 application that can serve as a console substitute.

                                This is pathetic. For one, both MFC and direct Win32 are capable of much of the same things. The pathetic part is I NEVER SAID ANYTHING REMOTELY CLOSE TO THESE LINES IN THE FIRST PLACE. Did you catch that, or would you prefer to not read it AGAIN. Quit being stubborn and think. You, the newbie having no idea what is being talked about, arguing with someone who is NOT a newbie and who in all likelihood knows way more about programming than you. Just think about that for a bit. Then, stop arguing and start reading.

                                Rilhas wrote:

                                Ididn't say without a window... I meant without an interface taking the remainder of the context: a text interface. I don't think my English failed there, your brain just wasn't able to pick up on the context.

                                Your context suggested it was in comparison to a mainframe windows in MFC, and later switched to a dialog. Not to mention you used the terms and the term "window" throughout the remainder of this thread interchangeably. But hey, don't let me stop you from acting like a fool.

                                Jeremy Falcon "It's a good thing to do and a tasty way to do it." - Wilford Brimley[^]

                                R 1 Reply Last reply
                                0
                                • J Jeremy Falcon

                                  Rilhas wrote:

                                  You are missing the point.

                                  I'm not missing anything. What you said is incorrect primarily because you don't know what it is even that you're arguing, and you're arguing apples to oranges.

                                  Rilhas wrote:

                                  MFC is easier.

                                  Can you at least read my posts before you start arguing?

                                  Rilhas wrote:

                                  MFC cannot be started without an interface.

                                  More proof you don't know what you're talking about. At least get your terminology correct when you don't listen. You can create a MFC app without a GUI; however, the wizard doesn't give you that option.

                                  Rilhas wrote:

                                  So, you focused on the fact that it is possible to create a Win32 with a graphical interface, and lost focus that that is not the interface required for this comparison.

                                  You mean the comparison that you made that didn't even address my point? You were talking about wizards and so was I. I even quoted that. Then, your next statement was about how MFC is easier, blah blah blah.

                                  Rilhas wrote:

                                  No, I'm not condusing anything, I'm sure you are. But please: try to do an equivalent to printf and scanf in Win32 with VC6 with... say... 10 extra lines? 10 extra short lines? With a button, maybe? Or a checkbox? Please do, and then we will see which of us is confused.

                                  Ok, look I'll say this S-L-O-W-E-R! You're comparing apples to oranges just to argue a point I never made.

                                  Rilhas wrote:

                                  I know what I'm talking about. You are the one singing off-key here. And you are the one misleading people.

                                  Yeah, for a beginner you're gonna have a difficult time with an attitude like that. Good luck, you'll need it.

                                  Jeremy Falcon "It's a good thing to do and a tasty way to do it." - Wilford Brimley[^]

                                  R Offline
                                  R Offline
                                  Rilhas
                                  wrote on last edited by
                                  #16

                                  Yes, you missed the point. Proven again. What was the point? Remember? "When should I choose Windows application or Console application?". Remember why I brought up MFC? Just read back, don't make me re-type it. MFC is easier (than Win32). This is the point. You missed it, argued wrong, and then didn't find a way to come back gracefully. Simple: just apologise. I read your posts. No apologies, they still say I was misleading. Well, it is easier, so where was I misleading? Oh, I know: you didn't understand the context of my sentence. Sorry, your bad. The terminoloy is correct. I can even start and MFC application with hammer and nails. Yes. a Magnific Fine Chair. Oh, sorry, lost context. You mean MFC as in VC or MFC as in bricolage? Please: don't loose focus. Don't try to argue terminology, otherwise a can start arguing that MFC don't have graphical interfaces, just wood. You won't be able to contradict me, but we won't get anywhere. OF COURSE MFC WITH A WIZARD!! At least MFC with a wizard is easier than Win32 in assembly. Do you agree or am I being misleading? I'm not comparing apples to oranges. I was talking about apples. You started talking about oranges because you missed the context of my sentence (maybe just to say something). And you stated that I was misleading while talking of apples. And then you just keep on defending that it was a good idea to talk oranges. At the same time you say apples are good. I'm sorry, your comments are just pointless. I'm not a beginner. Probably much more experienced than you and in many more areas. You just don't know, but you think you do.

                                  J 1 Reply Last reply
                                  0
                                  • R Rilhas

                                    Yes, you missed the point. Proven again. What was the point? Remember? "When should I choose Windows application or Console application?". Remember why I brought up MFC? Just read back, don't make me re-type it. MFC is easier (than Win32). This is the point. You missed it, argued wrong, and then didn't find a way to come back gracefully. Simple: just apologise. I read your posts. No apologies, they still say I was misleading. Well, it is easier, so where was I misleading? Oh, I know: you didn't understand the context of my sentence. Sorry, your bad. The terminoloy is correct. I can even start and MFC application with hammer and nails. Yes. a Magnific Fine Chair. Oh, sorry, lost context. You mean MFC as in VC or MFC as in bricolage? Please: don't loose focus. Don't try to argue terminology, otherwise a can start arguing that MFC don't have graphical interfaces, just wood. You won't be able to contradict me, but we won't get anywhere. OF COURSE MFC WITH A WIZARD!! At least MFC with a wizard is easier than Win32 in assembly. Do you agree or am I being misleading? I'm not comparing apples to oranges. I was talking about apples. You started talking about oranges because you missed the context of my sentence (maybe just to say something). And you stated that I was misleading while talking of apples. And then you just keep on defending that it was a good idea to talk oranges. At the same time you say apples are good. I'm sorry, your comments are just pointless. I'm not a beginner. Probably much more experienced than you and in many more areas. You just don't know, but you think you do.

                                    J Offline
                                    J Offline
                                    Jeremy Falcon
                                    wrote on last edited by
                                    #17

                                    Rilhas wrote:

                                    MFC is easier (than Win32). This is the point. You missed it, argued wrong, and then didn't find a way to come back gracefully.

                                    You are one stubborn fool. What part of I never even bothered to address this point did you not get? And this time actually answer the question to prove you're even bothering to read my posts.

                                    Rilhas wrote:

                                    MFC is easier (than Win32). This is the point. You missed it

                                    That's nice. Enjoy your stay at the "I hate to listen" club.

                                    Rilhas wrote:

                                    I'm not a beginner. Probably much more experienced than you and in many more areas. You just don't know, but you think you do.

                                    If you're not a beginner then you're a slow learner. And after this thread, I can believe it.

                                    Jeremy Falcon "It's a good thing to do and a tasty way to do it." - Wilford Brimley[^]

                                    R 1 Reply Last reply
                                    0
                                    • J Jeremy Falcon

                                      Rilhas wrote:

                                      Well, I do believe now that you lack the brain capacity to understand your mistakes.

                                      Look, insults from a child don't really get on my nerves. Although you not listening does. But, whatever I'm sure you have paint to sniff so I won't keep you waiting too much longer with this post.

                                      Rilhas wrote:

                                      I don't think you can learn anything new until you retrace your steps and try the Win32 application that can serve as a console substitute.

                                      This is pathetic. For one, both MFC and direct Win32 are capable of much of the same things. The pathetic part is I NEVER SAID ANYTHING REMOTELY CLOSE TO THESE LINES IN THE FIRST PLACE. Did you catch that, or would you prefer to not read it AGAIN. Quit being stubborn and think. You, the newbie having no idea what is being talked about, arguing with someone who is NOT a newbie and who in all likelihood knows way more about programming than you. Just think about that for a bit. Then, stop arguing and start reading.

                                      Rilhas wrote:

                                      Ididn't say without a window... I meant without an interface taking the remainder of the context: a text interface. I don't think my English failed there, your brain just wasn't able to pick up on the context.

                                      Your context suggested it was in comparison to a mainframe windows in MFC, and later switched to a dialog. Not to mention you used the terms and the term "window" throughout the remainder of this thread interchangeably. But hey, don't let me stop you from acting like a fool.

                                      Jeremy Falcon "It's a good thing to do and a tasty way to do it." - Wilford Brimley[^]

                                      R Offline
                                      R Offline
                                      Rilhas
                                      wrote on last edited by
                                      #18

                                      You don't know how old I am. You say insults don't offend you, but your reaction just states otherwise. And it was not an insult, was the observation of a fact. I did read it. You keep saying the same. When will you admit that MFC is a better alternative to console than Win32? Never? Ok, just keep arguing. I'm not a newbie. You insist on the very same mistake, and that teaches me a lot about you. You should have, at least, searched the web for my name and you would have found a lot of high-technology telecom systems and image processing algorithms developed by me (and mny more). Ignorance does not make you look good, no matter what your friends tell you. Your name, on the other hand, hit more on this forum. Probably means you say a lot but acomplish far less. Yes, I used the term window. Dialog appeared especially when pointing out compilation erros. You didn't comment on that either, you just talk, you don't solve problems. Dialog and window are confusing terms to you? Well, they souldn't. And you should feel confused if I used them interchangeably... especially since I also mentioned buttons and text boxes. I'm the one still waiting to hear from you defend that MFC is not closer to CON than WIN32. You talk and talk and talk, but the fact is you should have kept your first correction to my post all to yourself. Now you just try to get out gracefully and that is pitiful and impossible. I have some time to spare now, so no rpblem for me.

                                      J 1 Reply Last reply
                                      0
                                      • J Jeremy Falcon

                                        Rilhas wrote:

                                        MFC is easier (than Win32). This is the point. You missed it, argued wrong, and then didn't find a way to come back gracefully.

                                        You are one stubborn fool. What part of I never even bothered to address this point did you not get? And this time actually answer the question to prove you're even bothering to read my posts.

                                        Rilhas wrote:

                                        MFC is easier (than Win32). This is the point. You missed it

                                        That's nice. Enjoy your stay at the "I hate to listen" club.

                                        Rilhas wrote:

                                        I'm not a beginner. Probably much more experienced than you and in many more areas. You just don't know, but you think you do.

                                        If you're not a beginner then you're a slow learner. And after this thread, I can believe it.

                                        Jeremy Falcon "It's a good thing to do and a tasty way to do it." - Wilford Brimley[^]

                                        R Offline
                                        R Offline
                                        Rilhas
                                        wrote on last edited by
                                        #19

                                        Your correction to my post. This is the reason why. You missed the point and argued I was misleading. Is this enough for you to understand now? I'm listening: what exactly have you said about this? Nothing. Still nothing. I sure would like to read you say that MFC is, in fact, almost as easy as CON, and Win32 is much harder (to use as CON). I'm still waiting. But you avoid a position on this. Of course, because if you said so then you would have to admit that your fisrt correction was out-of-place... and that it lost focus and missed the point. Maybe you could even say something like "What I wrote is true, but I now understand that it doesn't address your comments and that you were not being misleading... I just didn't understand what you meant right away". Should I wait sitting down? Enjoy your stay at the "I hate to speak" club. I'm not a slow learner. But I'm a good learner. I typically don't throw myself inside large big holes on the ground like you did I try to crawl out still trying to look good.

                                        J 1 Reply Last reply
                                        0
                                        • R Rilhas

                                          You don't know how old I am. You say insults don't offend you, but your reaction just states otherwise. And it was not an insult, was the observation of a fact. I did read it. You keep saying the same. When will you admit that MFC is a better alternative to console than Win32? Never? Ok, just keep arguing. I'm not a newbie. You insist on the very same mistake, and that teaches me a lot about you. You should have, at least, searched the web for my name and you would have found a lot of high-technology telecom systems and image processing algorithms developed by me (and mny more). Ignorance does not make you look good, no matter what your friends tell you. Your name, on the other hand, hit more on this forum. Probably means you say a lot but acomplish far less. Yes, I used the term window. Dialog appeared especially when pointing out compilation erros. You didn't comment on that either, you just talk, you don't solve problems. Dialog and window are confusing terms to you? Well, they souldn't. And you should feel confused if I used them interchangeably... especially since I also mentioned buttons and text boxes. I'm the one still waiting to hear from you defend that MFC is not closer to CON than WIN32. You talk and talk and talk, but the fact is you should have kept your first correction to my post all to yourself. Now you just try to get out gracefully and that is pitiful and impossible. I have some time to spare now, so no rpblem for me.

                                          J Offline
                                          J Offline
                                          Jeremy Falcon
                                          wrote on last edited by
                                          #20

                                          Rilhas wrote:

                                          You don't know how old I am. You say insults don't offend you, but your reaction just states otherwise. And it was not an insult, was the observation of a fact.

                                          I wasn't referring to your age, rather your mentality.

                                          Rilhas wrote:

                                          I did read it. You keep saying the same. When will you admit that MFC is a better alternative to console than Win32? Never? Ok, just keep arguing.

                                          When will you admit you have a comprehension problem?

                                          Rilhas wrote:

                                          Yes, I used the term window. Dialog appeared especially when pointing out compilation erros. You didn't comment on that either, you just talk, you don't solve problems. Dialog and window are confusing terms to you? Well, they souldn't. And you should feel confused if I used them interchangeably... especially since I also mentioned buttons and text boxes.

                                          Oh, so now you're pulling a 180 just to argue? And for you not being a newbie I find it rather amusing you get compilation errors from a wizard generated project.

                                          Rilhas wrote:

                                          I'm the one still waiting to hear from you defend that MFC is not closer to CON than WIN32.

                                          For starters, your comparison of the two is retarded in the first place and only shows your ignorance. Nevertheless, this wasn't what I was talking about. The fact you choose not to listen really only means you want to argue, probably because you have no life and are bored.

                                          Rilhas wrote:

                                          I have some time to spare now, so no rpblem for me.

                                          Yup, looks like I was right. Get a hobby.

                                          Jeremy Falcon "It's a good thing to do and a tasty way to do it." - Wilford Brimley[^]

                                          R 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups