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. Wouldn't it be nice if...

Wouldn't it be nice if...

Scheduled Pinned Locked Moved The Lounge
help
19 Posts 10 Posters 4 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 Luc Pattyn

    There are several ways Explorer context menu items can be created; the ones needing some code can all be created by any IDE, including VS Express. The easier way is just an EXE being started once you clicked the context menu item, so the selected filepath gets passed to a regular EXE; the more complex ones really are Explorer extensions and run code when right-pointing on something. :)

    Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles] Nil Volentibus Arduum

    Please use <PRE> tags for code snippets, they preserve indentation, and improve readability.

    A Offline
    A Offline
    AspDotNetDev
    wrote on last edited by
    #9

    Ah, I misread the original post. I thought the OP was asking about a context menu in VS, but rereading it I see the OP wants the context menu in Explorer. Makes sense now.

    [Forum Guidelines]

    1 Reply Last reply
    0
    • S stephen hazel

      Microsoft would have a windows explorer context menu on .vcxproj files that did a "rebuild" and showed you the syntax error log. I don't know about you guys, but I'm using vc2010 and the thing is just crashing on me constantly X| I've tried rescanning the solution and all that. Yeah, well, I guess it's free.

      M Offline
      M Offline
      Mark_Wallace
      wrote on last edited by
      #10

      stephen.hazel wrote:

      a windows explorer context menu on .vcxproj files thatdid a "rebuild" and showed you the syntax error log.

      Approved. Have it on my desk by Friday.

      I wanna be a eunuchs developer! Pass me a bread knife!

      1 Reply Last reply
      0
      • L Luc Pattyn

        There is lots of things Express won't do for you: easily build mixed language projects, build unmanaged apps targeting x64, have a peek at assembly code, use MFC, etc. :)

        Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles] Nil Volentibus Arduum

        Please use <PRE> tags for code snippets, they preserve indentation, and improve readability.

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

        Luc Pattyn wrote:

        use MFC

        Why would anyone want to do that. I tried for ten years without much progress; that way madness lies...

        Will Rogers never met me.

        L 1 Reply Last reply
        0
        • H Henry Minute

          AFAIK the only thing the express versions can't do is create VS add-ins. They also have less Project/Item Templates although you can create the missing ones yourself.

          Henry Minute Do not read medical books! You could die of a misprint. - Mark Twain Girl: (staring) "Why do you need an icy cucumber?" “I want to report a fraud. The government is lying to us all.”

          CPalliniC Offline
          CPalliniC Offline
          CPallini
          wrote on last edited by
          #12

          ...resource editor for Visual C++... :rolleyes:

          If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
          This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
          [My articles]

          In testa che avete, signor di Ceprano?

          S 1 Reply Last reply
          0
          • R Roger Wright

            Luc Pattyn wrote:

            use MFC

            Why would anyone want to do that. I tried for ten years without much progress; that way madness lies...

            Will Rogers never met me.

            L Offline
            L Offline
            Luc Pattyn
            wrote on last edited by
            #13

            It is not that I want to use MFC, I much prefer .NET, however I have had problems when downloading some CP articles and code, I couldn't always rebuild the app due to the absence of MFC support. :)

            Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles] Nil Volentibus Arduum

            Please use <PRE> tags for code snippets, they preserve indentation, and improve readability.

            1 Reply Last reply
            0
            • S stephen hazel

              Microsoft would have a windows explorer context menu on .vcxproj files that did a "rebuild" and showed you the syntax error log. I don't know about you guys, but I'm using vc2010 and the thing is just crashing on me constantly X| I've tried rescanning the solution and all that. Yeah, well, I guess it's free.

              D Offline
              D Offline
              Dan Neely
              wrote on last edited by
              #14

              stephen.hazel wrote:

              Yeah, well, I guess it's free.

              The for pay versions of VS2k10 are also as stable as a non-spinning top X|

              3x12=36 2x12=24 1x12=12 0x12=18

              1 Reply Last reply
              0
              • L leppie

                Ever tried MSBuild ? Did you realize as a coder you CAN 'program' something to appear on the context menu, and when clicked, actually do something?

                xacc.ide
                IronScheme - 1.0 RC 1 - out now!
                ((λ (x) `(,x ',x)) '(λ (x) `(,x ',x))) The Scheme Programming Language – Fourth Edition

                G Offline
                G Offline
                Giorgi Dalakishvili
                wrote on last edited by
                #15

                Something like this? http://msbuildlaunchpad.codeplex.com/[^]

                Giorgi Dalakishvili #region signature My Articles Browsing xkcd in a windows 7 way[^] #endregion

                1 Reply Last reply
                0
                • S stephen hazel

                  Microsoft would have a windows explorer context menu on .vcxproj files that did a "rebuild" and showed you the syntax error log. I don't know about you guys, but I'm using vc2010 and the thing is just crashing on me constantly X| I've tried rescanning the solution and all that. Yeah, well, I guess it's free.

                  G Offline
                  G Offline
                  Giorgi Dalakishvili
                  wrote on last edited by
                  #16

                  You can use MSBuild Launch Pad[^]

                  Giorgi Dalakishvili #region signature My Articles Browsing xkcd in a windows 7 way[^] #endregion

                  S 2 Replies Last reply
                  0
                  • G Giorgi Dalakishvili

                    You can use MSBuild Launch Pad[^]

                    Giorgi Dalakishvili #region signature My Articles Browsing xkcd in a windows 7 way[^] #endregion

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

                    that looks like some awesome-ness right there. i'll give it a spin. thank you!

                    1 Reply Last reply
                    0
                    • G Giorgi Dalakishvili

                      You can use MSBuild Launch Pad[^]

                      Giorgi Dalakishvili #region signature My Articles Browsing xkcd in a windows 7 way[^] #endregion

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

                      That's aaaaaalmost exactly what i was lookin' for :) The options are nice, but it'd be nicer if there was an "auto-start" option that skipped the options screen. I don't really need to see the options I already picked and also don't particularly need to see the green "in progress bar"... But it beats bootin visual studio. I'll be usin it - thanks!

                      1 Reply Last reply
                      0
                      • CPalliniC CPallini

                        ...resource editor for Visual C++... :rolleyes:

                        If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
                        This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
                        [My articles]

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

                        ResEdit works great

                        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