vote up 1 vote down star

Should I use Visual C++ Express to write and compile or should I write in Notepad++ and compile it? I like using Notepad++ because of its clean interface and speedy start-up as compared to Visual which is a considerably heavier program.

If I do write in Notepad++ how do I compile it using Visual?

flag

50% accept rate

7 Answers

vote up 3 vote down

Can just compile via the command-line.

link|flag
That seemed to be for notepad, not notepad++, but never I think I'll use Visual then. – Fabian Oct 10 at 2:11
Its for any text editor. They just happen to use Notepad for the example. – rnicholson Oct 10 at 2:28
vote up 1 vote down

Visual Studio has intellisense, which makes coding a LOT easier. I mean, there's really no comparison.

link|flag
vote up 1 vote down

For successful developing in C++, you need much more than just compiling:

  • linking
  • "solution" management(to a project usually belongs more than 1 file)
  • resource management (for icons, bmp menu etc..)
  • debugging
  • easy jumping into functions/classes
  • intellisense (autocompletion for method/classes)

You will make more errors, produce worse code and will learn slower, if you use a simple texteditor.

Do yourself a favor and start with visual studio (or any other IDE). Later you can easily switch back to the basics (I doubt you will do that).

link|flag
vote up 1 vote down

While it is possible to do all your work from the command line, it is easier to use Visual Studio's UI. It provide intellisense, easy configuration, integrated source debugging, searching, etc. Unless you are already an expert, I wouldn't recommend it.

If you are and you really want to use Notepad++, I would suggest using the Windows Platform SDK for a build environment (compiler + linker), and WinDbg for your debugger.

link|flag
vote up 0 vote down

You can open up visual studio command prompt and run the command 'cl filename.c' to compile your program. However, this will help you only compile your program. If you want to debug it, you will have to open up a project under Visual Studio.

link|flag
But how does visual studio command prompt know where my cpp file is located? – Fabian Oct 10 at 2:10
2  
I think the O.P. was assuming you'd already cd-ed into the correct directory. – Andy Oct 10 at 2:19
vote up 0 vote down

Notepad++ has less sophisticated tools management than some other text editors. For freely available alternatives, consider PSPad or ConTEXT. For paid alternatives, UltraEdit and EditPad Pro are nice.

All of them allow you to easily configure multiple external tools for compiling, building, etc.

link|flag
What'd ya mean by less sophisticated tools management? Are you referring to lack of functionality? I did some Googling and I think I'll choose Notepad++ over PSPad... – Fabian Oct 10 at 2:28
vote up 0 vote down

If you really want to you can use both: you can let any solution item open in Npp: select 'Open With', then select to open the file with Npp and set this as default. This way, you'd use Npp for your editing needs, and still let VS manage the compiling/linking/.. No command line fiddling required.

That said, I use Npp as well, but apart from it's speed it's capabilities are nowhere near what VS offers, nor it's as customizable, and you can easily have VS look as clean as Npp.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.