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. How many people here still develop apps in Win32 with C/C++?

How many people here still develop apps in Win32 with C/C++?

Scheduled Pinned Locked Moved The Lounge
c++jsonquestion
56 Posts 44 Posters 0 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.
  • L Link2600

    Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?

    ======================================= A goal without a plan remains a dream. =======================================

    P Offline
    P Offline
    peterchen
    wrote on last edited by
    #14

    Not entire apps, but Many snippets I write use raw Win32. It feels more straightforward than all the libraries out there.


    Some of us walk the memory lane, others plummet into a rabbit hole
    Tree in C# || Fold With Us! || sighist

    1 Reply Last reply
    0
    • L Lost User

      I have in the past and Ive also had root canal therapy at the dentist. I prefer the dentist. Objects in mirror are closer than they appear

      P Offline
      P Offline
      peterchen
      wrote on last edited by
      #15

      Josh Gray wrote:

      I prefer the dentist.

      A smoking hot go-daddy girl? :rolleyes:


      Some of us walk the memory lane, others plummet into a rabbit hole
      Tree in C# || Fold With Us! || sighist

      1 Reply Last reply
      0
      • L Link2600

        Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?

        ======================================= A goal without a plan remains a dream. =======================================

        S Offline
        S Offline
        Stuart Dootson
        wrote on last edited by
        #16

        Everything I develop at work pretty much.

        1 Reply Last reply
        0
        • L Link2600

          Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?

          ======================================= A goal without a plan remains a dream. =======================================

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

          Our current project[^] is written entirely in C++ as using a .NET language would have been too limiting (we have a single binary that targets all supported platforms; that simply wouldn't be possible in C# because of framework versioning restrictions). For a project of this size (approx 70,000 lines now, not including comments) using Win32 raw is just not productive, particularly as it makes heavy use of multithreading (there are two thread pools), UI and ActiveX. ATL 7.1 and WTL 7.5 provide everything we need so we don't need to incurr the overhead or architectural assumptions of MFC. Anna :rose: Currently working mostly on: Visual Lint :cool: Anna's Place | Tears and Laughter "Be yourself - not what others think you should be" - Marcia Graesch "Anna's just a sexy-looking lesbian tart" - A friend, trying to wind me up. It didn't work.

          1 Reply Last reply
          0
          • L Link2600

            Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?

            ======================================= A goal without a plan remains a dream. =======================================

            J Offline
            J Offline
            Jetli Jerry
            wrote on last edited by
            #18

            I am too Sometimes MFC, Jetli Constant Thing In World Is Change.

            1 Reply Last reply
            0
            • L Link2600

              Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?

              ======================================= A goal without a plan remains a dream. =======================================

              T Offline
              T Offline
              ThatsAlok
              wrote on last edited by
              #19

              Link2006 wrote:

              I mean good old fashion WIN32 API with C/C++. Anyone?

              yes i one of them!

              "Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow

              cheers, Alok Gupta VC Forum Q&A :- I/ IV Support CRY- Child Relief and You

              1 Reply Last reply
              0
              • L Link2600

                Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?

                ======================================= A goal without a plan remains a dream. =======================================

                M Offline
                M Offline
                Mike Dimmick
                wrote on last edited by
                #20

                Yes, for small utility programs that run on Windows CE. Either they have no UI or the UI support in ATL is overkill - if you only have one window displaying static text, the Win32 EXE AppWizard's auto-generated 'Hello World' app is enough, likewise if you just have a single dialog that just needs to display a progress bar. Stability. What an interesting concept. -- Chris Maunder

                1 Reply Last reply
                0
                • L Link2600

                  Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?

                  ======================================= A goal without a plan remains a dream. =======================================

                  E Offline
                  E Offline
                  El Corazon
                  wrote on last edited by
                  #21

                  Link2006 wrote:

                  how many people here still develop apps in Win32 with C/C++?

                  Not sure I really count, but yes. Mostly because I rarely need more. As soon as I have established a window, the rest is all OpenGL and my code anyhow. I will occasionally use a routine for more, but very rarely. _________________________ Asu no koto o ieba, tenjo de nezumi ga warau. Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb)

                  1 Reply Last reply
                  0
                  • L Link2600

                    Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?

                    ======================================= A goal without a plan remains a dream. =======================================

                    C Offline
                    C Offline
                    cmk
                    wrote on last edited by
                    #22

                    For PDA dev i use a mix of Win32 and MFC. For desktop/server i use a framework i developed years ago that wraps Win32. ...cmk Save the whales - collect the whole set

                    1 Reply Last reply
                    0
                    • L Link2600

                      Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?

                      ======================================= A goal without a plan remains a dream. =======================================

                      C Offline
                      C Offline
                      curt powell
                      wrote on last edited by
                      #23

                      Absolutely! Low-level code (drivers, services).

                      1 Reply Last reply
                      0
                      • L Link2600

                        Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?

                        ======================================= A goal without a plan remains a dream. =======================================

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

                        I still use a lot of raw Win32 API and C, but I'm also becoming a game programmer using OpenGL and a multimedia library I'm working on. For normal, data-driven apps, I'd probably use something higher level though, but for games, I have the need for speed. :cool: Also, I do like being able to make the occasional app with no dependencies either.

                        Jeremy Falcon

                        1 Reply Last reply
                        0
                        • C Christian Graus

                          For *real* old fashioned, you should have said 'just C'. Either way, looks like you found the only guy. Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog

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

                          Christian Graus wrote:

                          Either way, looks like you found the only guy.

                          I'm in the same crowd. That makes three! Woo Hoo. :laugh:

                          Jeremy Falcon

                          E 1 Reply Last reply
                          0
                          • L Link2600

                            Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?

                            ======================================= A goal without a plan remains a dream. =======================================

                            J Offline
                            J Offline
                            jewell
                            wrote on last edited by
                            #26

                            I use the correct tool to solve the problem. So yes, if the problem calls for C/C++ and Win32, then that is what I use.

                            1 Reply Last reply
                            0
                            • L Link2600

                              Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?

                              ======================================= A goal without a plan remains a dream. =======================================

                              J Offline
                              J Offline
                              Jason J Neigh
                              wrote on last edited by
                              #27

                              Me too. And I know 4 others not reading this.

                              1 Reply Last reply
                              0
                              • L Link2600

                                Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?

                                ======================================= A goal without a plan remains a dream. =======================================

                                C Offline
                                C Offline
                                Christopher Lloyd
                                wrote on last edited by
                                #28

                                It's all I use, even for big apps. But then all my work involves real time image manipulation and for a lot of that I use assembler - so C++ and Win32 feels really high-level to me! Also I like the total lack of dependency. All my apps run on all 32 bit versions of Windows using a single exe (OK, I do use delayload so I can take advantage of new features). Finally, maybe I'm just too old and stuck in my ways. (I started my progamming career writing a GUI for the PC in C, this was a long time ago - before Windows even existed). And somehow I can never find the time to learn all the new libraries - but then it seems to me you finished learning one and 3 new ones come out!

                                1 Reply Last reply
                                0
                                • L Link2600

                                  Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?

                                  ======================================= A goal without a plan remains a dream. =======================================

                                  S Offline
                                  S Offline
                                  stephen hazel
                                  wrote on last edited by
                                  #29

                                  me too! working on a midi sequencer (song editor) http://shazware.com/ditty/ And a few utility apps and such. That's home programming though. Not at work. But exclusively Win32 API and C++ at home. ...Steve

                                  1 Reply Last reply
                                  0
                                  • L Link2600

                                    Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?

                                    ======================================= A goal without a plan remains a dream. =======================================

                                    A Offline
                                    A Offline
                                    ajdiaz
                                    wrote on last edited by
                                    #30

                                    Only to write viruses and hacking tools. Win32 C++ is the best!

                                    1 Reply Last reply
                                    0
                                    • L Link2600

                                      Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?

                                      ======================================= A goal without a plan remains a dream. =======================================

                                      T Offline
                                      T Offline
                                      Todd Smith
                                      wrote on last edited by
                                      #31

                                      Me ... unfortunately.

                                      Todd Smith

                                      1 Reply Last reply
                                      0
                                      • L Link2600

                                        Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?

                                        ======================================= A goal without a plan remains a dream. =======================================

                                        S Offline
                                        S Offline
                                        schaffs
                                        wrote on last edited by
                                        #32

                                        I have but recently graduated to a broader audience and usability found in java servlets! I still can and will if needed. There's alot less need for custom Win32 C apps where I am these days.

                                        1 Reply Last reply
                                        0
                                        • C Christian Graus

                                          For *real* old fashioned, you should have said 'just C'. Either way, looks like you found the only guy. Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog

                                          D Offline
                                          D Offline
                                          doug4350
                                          wrote on last edited by
                                          #33

                                          Christian Graus wrote:

                                          For *real* old fashioned, you should have said 'just C'.

                                          ditto... There's a big angry nest of us over here :) ! Aloha, Doug

                                          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