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. Notepad++ ....

Notepad++ ....

Scheduled Pinned Locked Moved The Lounge
question
42 Posts 21 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.
  • CPalliniC CPallini

    Because they do provide Wordpad! (I'll take my coat)

    "In testa che avete, Signor di Ceprano?" -- Rigoletto

    J Offline
    J Offline
    Jalapeno Bob
    wrote on last edited by
    #29

    X| X| X| YUCK!!!!!! X| X| X|

    __________________ Lord, grant me the serenity to accept that there are some things I just can’t keep up with, the determination to keep up with the things I must keep up with, and the wisdom to find a good RSS feed from someone who keeps up with what I’d like to, but just don’t have the damn bandwidth to handle right now. © 2009, Rex Hammock

    1 Reply Last reply
    0
    • G glennPattonWork3

      Really, VS Code seems more like an IDE than a general purpose editor...

      H Offline
      H Offline
      honey the codewitch
      wrote on last edited by
      #30

      It's an editor. There are just plugins that can make it ide-ish Check out my IoT graphics library here: https://honeythecodewitch.com/gfx And my IoT UI/User Experience library here: https://honeythecodewitch.com/uix

      1 Reply Last reply
      0
      • G glennPattonWork3

        Hi All, I have a question, as I have used Notepad++ for years. I was told it would be on my current employers list of approved software. Probe further to find out why, turns out its 'Freeware' and as such is insecure. Is this alarmist I haven't heard of any issues, the only thing is our PC are so nailed shut you have to get IT every time it updates...:~ Glenn

        B Offline
        B Offline
        BernardIE5317
        wrote on last edited by
        #31

        I am impressed w/ this fellow's work. I had utilized his text editor many years ago but am too tight fisted to purchase now. So I utilize NotePad++ and BowPad. Welcome to Just Great Software[^]

        1 Reply Last reply
        0
        • R Ron Anders

          Why MS hasn't doen more to notepad is beyond me.

          B Offline
          B Offline
          BryanFazekas
          wrote on last edited by
          #32

          Notepad in Win11 has numerous upgrades. Personally, Win11's Notepad is second or third rate to NP++, so I still use NP++ as my primary. I'd like to get a version of Win10's Notepad for Win11 for the quick-n-dirty needs. I wanted to see Notepad updated ... but once I got it, I wanted it back the way it was. :laugh: UPDATE: The old version of Notepad is installed on Win11. This page has instructions for being able to use both the new and old versions. How to bring back the old classic Notepad in Windows 11[^]

          1 Reply Last reply
          0
          • L Lost User

            glennPattonWork3 wrote:

            It doesn't generate executables it generates MSIL code

            No, it does neither of those things. Visual Studio is an Interactive Development Environment, and as such just manages your projects. All code generation, whether machine or MSIL, is done by the compilers. And straight C/C++ code does not generate MSIL.

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

            Right, a plain vanilla Windows install with .net (since XP?) contains the compilers for C# and VB.net -- Visual Studio is not required. Anyone who knows how to write a bit of such code can produce a .net executable without installing anything else.

            L 1 Reply Last reply
            0
            • P PIEBALDconsult

              Right, a plain vanilla Windows install with .net (since XP?) contains the compilers for C# and VB.net -- Visual Studio is not required. Anyone who knows how to write a bit of such code can produce a .net executable without installing anything else.

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

              PIEBALDconsult wrote:

              contains the compilers for C# and VB.net

              Well, certainly not on either of our non-dev systems, that I can find. Where would you expect them to be installed?

              P 1 Reply Last reply
              0
              • G glennPattonWork3

                You are assuming IT is worth more than Vis Studio is a "secuirty risk as you can generate executables from it" (I quote) this generated two responses from me Learn the value of spell check, It doesn't generate executables it generates MSIL code which is run by the .NET frame work. :sigh:

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

                glennPattonWork3 wrote:

                can generate executables from it

                Alternatively, some enterprise whackos are pushing for Python because either: 0) Executables are dangerous and with Python you don't create an executable. or 1) A Python script is the executable, but it's easy to check that it hasn't been altered. In both cases, they like that the script gets deployed directly to the production servers without a build process -- no "executable" in the traditional sense, but it's still an executable. Any other "scripting language" would be the same (e.g. Perl). Of course, how do you know that the script wasn't altered along the way? Or that a bug wasn't "fixed" in production but not checked in? It's the same issue I have with SQL objects such as Procedures, Views, Functions, etc. -- do they really match what we have in version control? Have we checked? As a developer, I prefer traditional languages -- with compilers and "executables" -- when "security" is a factor.

                G 1 Reply Last reply
                0
                • L Lost User

                  PIEBALDconsult wrote:

                  contains the compilers for C# and VB.net

                  Well, certainly not on either of our non-dev systems, that I can find. Where would you expect them to be installed?

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

                  Assuming at least one version of .net is installed... try dir /s C:\windows\microsoft.net\Framework\csc.exe C:\windows\microsoft.net\Framework\vbc.exe or C:\windows\System32>where csc.exe C:\Windows\microsoft.net\Framework\v4.0.30319\csc.exe C:\windows\System32>csc.exe /? Microsoft (R) Visual C# Compiler version 4.8.3761.0 for C# 5 (I'm using a rather old Win 8 tablet at the moment.)

                  L 1 Reply Last reply
                  0
                  • P PIEBALDconsult

                    Assuming at least one version of .net is installed... try dir /s C:\windows\microsoft.net\Framework\csc.exe C:\windows\microsoft.net\Framework\vbc.exe or C:\windows\System32>where csc.exe C:\Windows\microsoft.net\Framework\v4.0.30319\csc.exe C:\windows\System32>csc.exe /? Microsoft (R) Visual C# Compiler version 4.8.3761.0 for C# 5 (I'm using a rather old Win 8 tablet at the moment.)

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

                    You are correct, I was only looking in Program Files and Program Files (x86). Also was not aware of where.

                    P 1 Reply Last reply
                    0
                    • L Lost User

                      You are correct, I was only looking in Program Files and Program Files (x86). Also was not aware of where.

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

                      Yeah. A system may have several versions of the compilers installed. More recent versions can compile different versions of the language (I tend to target C# v3). Microsoft (R) Visual C# Compiler version 4.8.3761.0 for C# 5 /langversion:<string> Specify language version mode: ISO-1, ISO-2, 3, 4, 5, or Default

                      1 Reply Last reply
                      0
                      • P PIEBALDconsult

                        glennPattonWork3 wrote:

                        can generate executables from it

                        Alternatively, some enterprise whackos are pushing for Python because either: 0) Executables are dangerous and with Python you don't create an executable. or 1) A Python script is the executable, but it's easy to check that it hasn't been altered. In both cases, they like that the script gets deployed directly to the production servers without a build process -- no "executable" in the traditional sense, but it's still an executable. Any other "scripting language" would be the same (e.g. Perl). Of course, how do you know that the script wasn't altered along the way? Or that a bug wasn't "fixed" in production but not checked in? It's the same issue I have with SQL objects such as Procedures, Views, Functions, etc. -- do they really match what we have in version control? Have we checked? As a developer, I prefer traditional languages -- with compilers and "executables" -- when "security" is a factor.

                        G Offline
                        G Offline
                        glennPattonWork3
                        wrote on last edited by
                        #39

                        Quote:

                        As a developer, I prefer traditional languages -- with compilers and "executables" -- when "security" is a factor.

                        You and me agree!

                        1 Reply Last reply
                        0
                        • L Lost User

                          glennPattonWork3 wrote:

                          It doesn't generate executables it generates MSIL code

                          No, it does neither of those things. Visual Studio is an Interactive Development Environment, and as such just manages your projects. All code generation, whether machine or MSIL, is done by the compilers. And straight C/C++ code does not generate MSIL.

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

                          Richard MacCutchan wrote:

                          Interactive Development Environment

                          Integrated Development Environment == Bugging and debugging all in one place.

                          L 1 Reply Last reply
                          0
                          • P PIEBALDconsult

                            Richard MacCutchan wrote:

                            Interactive Development Environment

                            Integrated Development Environment == Bugging and debugging all in one place.

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

                            At my age, two words correct out of three is quite good. :sigh:

                            1 Reply Last reply
                            0
                            • G glennPattonWork3

                              Hi All, I have a question, as I have used Notepad++ for years. I was told it would be on my current employers list of approved software. Probe further to find out why, turns out its 'Freeware' and as such is insecure. Is this alarmist I haven't heard of any issues, the only thing is our PC are so nailed shut you have to get IT every time it updates...:~ Glenn

                              M Offline
                              M Offline
                              Mateusz Jakub
                              wrote on last edited by
                              #42

                              Smoke and mirrors security at its best.

                              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