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
  1. Home
  2. The Lounge
  3. I hate MFC!!!

I hate MFC!!!

Scheduled Pinned Locked Moved The Lounge
c++designquestion
77 Posts 31 Posters 131 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.
  • S Stuart van Weele

    What exactly is the problem? MFC has CASE tools (well, kind of) that let you generate dialogs, menus, etc pretty quickly. Granted, the tools are not real CASE tools and the GUIs they create a not flashy, but they get the job done.

    N Offline
    N Offline
    Nemanja Trifunovic
    wrote on last edited by
    #17

    Stuart van Weele wrote: What exactly is the problem? The problem is that if I want to paint an edit control background at compile time, I should right-click on that control and pick the color from a palette - not to mess with WM_CTLCOLOREDIT. Simple things should be done simply. Stuart van Weele wrote: Granted, the tools are not real CASE tools and the GUIs they create a not flashy, but they get the job done. In a week. Real tools should get the same job done in a day. :beer:

    G S D J R 5 Replies Last reply
    0
    • N Nemanja Trifunovic

      Stuart van Weele wrote: What exactly is the problem? The problem is that if I want to paint an edit control background at compile time, I should right-click on that control and pick the color from a palette - not to mess with WM_CTLCOLOREDIT. Simple things should be done simply. Stuart van Weele wrote: Granted, the tools are not real CASE tools and the GUIs they create a not flashy, but they get the job done. In a week. Real tools should get the same job done in a day. :beer:

      G Offline
      G Offline
      Giles
      wrote on last edited by
      #18

      I've got a feeling this kind of thing is coming to Visual C++ in the next edition out this year as C# and VB.NET have it, and we have all being shouting about it.

      N 1 Reply Last reply
      0
      • G Giles

        I've got a feeling this kind of thing is coming to Visual C++ in the next edition out this year as C# and VB.NET have it, and we have all being shouting about it.

        N Offline
        N Offline
        Nemanja Trifunovic
        wrote on last edited by
        #19

        I've worked with C# and VS.NET 2002 and found out that, while much better than MFC + VC 6. it still requires too much messing with simple, tedious things (like manually adding event handlers). Besides, .NET based desktop applications are not (yet) an option IMHO. :beer:

        R 1 Reply Last reply
        0
        • realJSOPR realJSOP

          He actually meant to imply that STL is good if you want to attack a simple problem with an overly-complicated code library... ------- signature starts "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001 Please review the Legal Disclaimer in my bio. ------- signature ends

          J Offline
          J Offline
          Jorgen Sigvardsson
          wrote on last edited by
          #20

          I still want some of that smoke though. ;P -- Eventhough the forrest is full of trees, there's still no tree between the trees.

          K 1 Reply Last reply
          0
          • N Nemanja Trifunovic

            It took me one day to develop the "logic" with STL, and now I'm working on damn UI for almost a week. Why there is no good RAD tool for C++? No wonder there are so many VB users. Die, MFC, die!!! :mad: :mad: :mad: :beer:

            N Offline
            N Offline
            Navin
            wrote on last edited by
            #21

            Let's see, you hate MFC, and you hate Linux... what *do* you like? :-D You can pick your friends, and you can pick your nose, but you can't pick your friend's nose.

            N 1 Reply Last reply
            0
            • N Navin

              Let's see, you hate MFC, and you hate Linux... what *do* you like? :-D You can pick your friends, and you can pick your nose, but you can't pick your friend's nose.

              N Offline
              N Offline
              Nemanja Trifunovic
              wrote on last edited by
              #22

              Navin wrote: Let's see, you hate MFC, and you hate Linux... what *do* you like? From my CP profile: Enjoyes: C++ coding, reading, movies, sleeping, but most of all the company of his wife and baby daughter. Dislikes: GUI programming, writing documentation, garbage collectors, Open Source zealots. ;) :beer:

              A J 2 Replies Last reply
              0
              • N Nemanja Trifunovic

                Stuart van Weele wrote: What exactly is the problem? The problem is that if I want to paint an edit control background at compile time, I should right-click on that control and pick the color from a palette - not to mess with WM_CTLCOLOREDIT. Simple things should be done simply. Stuart van Weele wrote: Granted, the tools are not real CASE tools and the GUIs they create a not flashy, but they get the job done. In a week. Real tools should get the same job done in a day. :beer:

                S Offline
                S Offline
                Stuart van Weele
                wrote on last edited by
                #23

                There might be a way out (well kind of...) AFAIK the MFC edit control is just a plain MS edit box that is part of the underlying OS GUI, while the VB control is a COM object that is built into the VB dll. If you can find a COM edit control that does everything you want and is redistributable then you can use it.

                1 Reply Last reply
                0
                • R Richard Melton

                  >Why there is no good RAD tool for C++? For C++ or MFC? ?confused? I like MFC for Windows apps. Its a lightweight wrapper around a messy API. MFC for COM and COM's apostles is something I avoid like the plague, that's what ATL is for. I have serious trouble digesting the fact that you got 'STLs' logic in one day. Writing custom containers and iterators can be tough work, but having it all plug together is nice.

                  P Offline
                  P Offline
                  pankajdaga
                  wrote on last edited by
                  #24

                  I like MFC for Windows apps. Its a lightweight wrapper around a messy API. MFC for COM and COM's apostles is something I avoid like the plague, that's what ATL is for. One thing that MFC is not, is lightweight. It is ok, if you do not want bulky, over-weight slow programs. Pankaj Without struggle, there is no progress

                  R 1 Reply Last reply
                  0
                  • N Nemanja Trifunovic

                    It took me one day to develop the "logic" with STL, and now I'm working on damn UI for almost a week. Why there is no good RAD tool for C++? No wonder there are so many VB users. Die, MFC, die!!! :mad: :mad: :mad: :beer:

                    C Offline
                    C Offline
                    Carlos Antollini
                    wrote on last edited by
                    #25

                    I love MFC :bob: Carlos Antollini. Pi Five[^]Creator Sonork ID 100.10529 cantollini

                    1 Reply Last reply
                    0
                    • K Kant

                      Nemanja Trifunovic wrote: It took me one day to develop the "logic" with STL Sorry..wrong forum...Only these posts allowed : Dubya, Iraq, Oil.... Just Kidding..;P Kant Sonork-100.28114 Don't :beer: and Drive.

                      L Offline
                      L Offline
                      Lost User
                      wrote on last edited by
                      #26

                      How about a post with GWB using STL to write software to work out how much oil there is in Iraq ;P Elaine The tigress is here :-D

                      A 1 Reply Last reply
                      0
                      • K Kant

                        Nemanja Trifunovic wrote: It took me one day to develop the "logic" with STL Sorry..wrong forum...Only these posts allowed : Dubya, Iraq, Oil.... Just Kidding..;P Kant Sonork-100.28114 Don't :beer: and Drive.

                        R Offline
                        R Offline
                        Robert Vista
                        wrote on last edited by
                        #27

                        No, you seem to be the only one obsessed with George Bush.:confused:

                        K 1 Reply Last reply
                        0
                        • N Nemanja Trifunovic

                          It took me one day to develop the "logic" with STL, and now I'm working on damn UI for almost a week. Why there is no good RAD tool for C++? No wonder there are so many VB users. Die, MFC, die!!! :mad: :mad: :mad: :beer:

                          A Offline
                          A Offline
                          Anna Jayne Metcalfe
                          wrote on last edited by
                          #28

                          Try WTL or another framework then...;) Anna :rose: www.annasplace.me.uk

                          "Be yourself - not what others think you should be"
                          - Marcia Graesch

                          Trouble with resource IDs? Try the Resource ID Organiser Add-In for Visual C++

                          N 1 Reply Last reply
                          0
                          • P pankajdaga

                            I like MFC for Windows apps. Its a lightweight wrapper around a messy API. MFC for COM and COM's apostles is something I avoid like the plague, that's what ATL is for. One thing that MFC is not, is lightweight. It is ok, if you do not want bulky, over-weight slow programs. Pankaj Without struggle, there is no progress

                            R Offline
                            R Offline
                            Richard Melton
                            wrote on last edited by
                            #29

                            Ney, Ney... MFC with COM, OLE DB, and OLE is a fat ugly cow. MFC as a simple way to write windows apps is lightweight.

                            P 1 Reply Last reply
                            0
                            • N Nemanja Trifunovic

                              Navin wrote: Let's see, you hate MFC, and you hate Linux... what *do* you like? From my CP profile: Enjoyes: C++ coding, reading, movies, sleeping, but most of all the company of his wife and baby daughter. Dislikes: GUI programming, writing documentation, garbage collectors, Open Source zealots. ;) :beer:

                              A Offline
                              A Offline
                              Anna Jayne Metcalfe
                              wrote on last edited by
                              #30

                              Nemanja Trifunovic wrote: Dislikes: GUI programming, writing documentation, garbage collectors, Open Source zealots. Problem solved! Find someone else to do the GUI. ;) Anna :rose: www.annasplace.me.uk

                              "Be yourself - not what others think you should be"
                              - Marcia Graesch

                              Trouble with resource IDs? Try the Resource ID Organiser Add-In for Visual C++

                              1 Reply Last reply
                              0
                              • A Anna Jayne Metcalfe

                                Try WTL or another framework then...;) Anna :rose: www.annasplace.me.uk

                                "Be yourself - not what others think you should be"
                                - Marcia Graesch

                                Trouble with resource IDs? Try the Resource ID Organiser Add-In for Visual C++

                                N Offline
                                N Offline
                                Nemanja Trifunovic
                                wrote on last edited by
                                #31

                                Anna-Jayne Metcalfe wrote: Try WTL or another framework then I doubt WTL is easier at all. Besides, It's not me who decides :(( :beer:

                                J 1 Reply Last reply
                                0
                                • A Alvaro Mendez

                                  Shog9 wrote: lots&lots&lots&lots&lots&lots&lots&lots&lots of people use it Funny, I've used the same argument to defend VB, but it just doesn't work too well... :)


                                  All you need in this life is ignorance and confidence, and then success is sure. -- Mark Twain

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

                                  :laugh: Jeremy Falcon Imputek

                                  1 Reply Last reply
                                  0
                                  • S Shog9 0

                                    Yeah, MFC sucks. It'll kick you right in the nuts if you take your eyes off it for a second. It'll stab you in the back if you turn away. But it must have some advantage, 'cause lots&lots&lots&lots&lots&lots&lots&lots&lots of people use it, so who are you to argue? :rolleyes:

                                    ---

                                    Shog9 I see the way the salesmen stare into the sun I stood and watched them as they fell off one by one...

                                    J Offline
                                    J Offline
                                    Jorgen Sigvardsson
                                    wrote on last edited by
                                    #33

                                    Shog9 wrote: But it must have some advantage, 'cause lots&lots&lots&lots&lots&lots&lots&lots&lots of people use it, so who are you to argue? How many other Microsoft mainstream toolkits are there? :) (No, WTL doesn't count as mainstream - it's not even supported by Microsoft!) One could use for instance Borland C++ Builder as an alternative, but I think Microsofts development tools and MSDN is overall better than Borland. I think that's the only reason MFC is so big - there is nothing to compete with it! I think they should scrap MFC and make a toolkit similar to WTL instead. But that would be a waste of lot of work and effort put into MFC, so I guess we'll have to stick with it for quite a while! -- Eventhough the forrest is full of trees, there's still no tree between the trees.

                                    1 Reply Last reply
                                    0
                                    • R Richard Melton

                                      Pheeewwww ....I was feeling like a tard... about to shirk off in my corner.

                                      J Offline
                                      J Offline
                                      Jorgen Sigvardsson
                                      wrote on last edited by
                                      #34

                                      Actually, STL isn't that hard to learn at all! Generic Programming and the STL: Using and Extending the C++ Standard Template Library [^] gave me enough Ohs, Ahs and Ahas to get me going. You just need to understand some basic concepts which are, contrary to manys belief, very simple. 1 day is perhaps a bit short, but a week is enough to learn how to extend the STL. A couple of months perhaps to master it. -- Eventhough the forrest is full of trees, there's still no tree between the trees.

                                      R 1 Reply Last reply
                                      0
                                      • N Nemanja Trifunovic

                                        Anna-Jayne Metcalfe wrote: Try WTL or another framework then I doubt WTL is easier at all. Besides, It's not me who decides :(( :beer:

                                        J Offline
                                        J Offline
                                        Jorgen Sigvardsson
                                        wrote on last edited by
                                        #35

                                        I find it easier actually. But maybe that's just me. :) Nemanja Trifunovic wrote: Besides, It's not me who decides Hey, know what? I get to be part of these decisions. :rolleyes::-D -- Eventhough the forrest is full of trees, there's still no tree between the trees.

                                        1 Reply Last reply
                                        0
                                        • N Nemanja Trifunovic

                                          Navin wrote: Let's see, you hate MFC, and you hate Linux... what *do* you like? From my CP profile: Enjoyes: C++ coding, reading, movies, sleeping, but most of all the company of his wife and baby daughter. Dislikes: GUI programming, writing documentation, garbage collectors, Open Source zealots. ;) :beer:

                                          J Offline
                                          J Offline
                                          Jorgen Sigvardsson
                                          wrote on last edited by
                                          #36

                                          Nemanja Trifunovic wrote: C++ coding movies sleeping GUI programming writing documentation garbage collectors Open Source zealots Amen! May I assume that you also dislike Java? Can I be your friend? :-D -- Eventhough the forrest is full of trees, there's still no tree between the trees.

                                          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