vote up 3 vote down star

I'm used to using iterations of Visual Studio for my IDE needs, but I've long since wiped the machine I had that on and don't think I can have the program reinstalled on new main machine. Because of this I've mostly been using Geany to write up my code, then FireFTP to send it off to a faraway UNIX machine, then using gcc or g++ to compile my code. While I have no real qualms with this method, it is a bit annoying to have to always send off my code to a faraway machine just to compile and test it (as well as the constant back and forth between Geany and FireFTP when I have to do fixes and updates). This also causes an unintentional problem where I can only make executable files for the UNIX machine, but bringing it back over to my Windows machine for testing wouldn't work (unless there's something I don't know about that could make this work).

Does anyone know of a free IDE I could use for a Windows environment in order to solve this problem? Or at least some ways I could make the process of coding to FTPing to compiling to testing (and back again) easier and make my code cross-compatible?

flag

67% accept rate
Wow, I never expected so many answers so quickly. Thanks for the suggestions guys, I'll have to look over each of these and see which ones I like best. For the record, I've only used Subversion (or something like it) once before so I'm rather new to it. – Mathias Schnell Sep 25 at 16:45
Yeah, this site is really great for getting fast, quality answers (not that my answer was great :P) – Ed Swangren Sep 25 at 16:46
What language(s)? – voyager Sep 25 at 16:48
C/C++, some Java, HTML, CSS and PHP now and then – Mathias Schnell Sep 25 at 16:52
Ahhh, then eclipse would probably be better for you. I only saw you mention C++. – Ed Swangren Sep 25 at 17:42

17 Answers

vote up 0 vote down

I'll add PSPad to the mix. It's a very full-featured Windows programming editor / IDE with built-in FTP.

It's definitely worth checking out.

link|flag
vote up 1 vote down

I do belive that SharpDevelop is still being worked on. From their website '
#develop (short for SharpDevelop) is a free IDE for C#, VB.NET and Boo projects on Microsoft's .NET platform'

A screen shot of the application can be seen on the front page of the website. I used it back when it was still being developed for .net 1.1 and 2.0. Alot of the things that you know from visual studio can be translated into the same actions with SharpDevlop.

Hope this helps.

link|flag
vote up 0 vote down

Codeblocks and Codelite are two good options if you're sticking with C++. You can use Netbeans and Eclipse for C++. There is also SkyIDE, which is good choice for C++ development, but not actively developed these days. There is also Bloodshed DevC++, but the GCC bundled with it is not updated version. and DevC++ is not actively developed. So better avoid discontinued projects like this.

If you think IDE are too heavy for you. Then you can go with Notepad++ or Scite. Simple and effective. But for more comfort go with IDE's.

link|flag
vote up 3 vote down

Check out Wascana, an Eclipse-based IDE that also comes prepackaged with CDT, MinGW+MYSYS, wxWidgets, and SDL. Just install and start developping immediately with Eclipse without the hassles of installing seperate installations of Cygwin or MinGW.

link|flag
vote up 0 vote down

How about if you had an IDE that looks like VS, has an integrated FTP and SSH clients, and allows you to setup and environment to do all of the steps you mentioned in one click...
Check out Magic C++ .NET (not a freeware, but you can download a free trial)


Alternative: Install cygwin and use it with your favorite IDE/editor (Eclipse, Notepad++, ..)

link|flag
vote up 0 vote down

Install Perl.

Create a tool that runs a perl script to ftp the files in your project to the unix machine.

Associate that tool, with a button.

When you want to move the file, click the button, and they land on the unix box in short order.

link|flag
vote up 2 vote down

Lots of answers already, but it must be said:

Try Vim. It's the most powerful IDE I've come across in all my years programming, and I've never been happier than with Vim. It's got everything a complete IDE needs except debugger integration, but I can live without that. ;)

link|flag
vote up 1 vote down

Scintilla provides a simple IDE with SciTE. I've only used it for dynamic languages, but it has compile and build options - which you may have to configure. I don't see an FTP option, but maybe you can add it.

link|flag
vote up 4 vote down

Don't leave home without emacs. Maybe not your only "IDE" but I find it an indispensable companion.

Most recently I've been relying heavily on TFS + emacs integration (from TFS+emacs on SO).

link|flag
Emacs is the best IDE for general programming. – Paul Nathan Sep 25 at 19:23
vote up 0 vote down

Have you tried Notepad++?

link|flag
This I've actually used before and while I did like it for a while it eventually started crashing and wouldn't even start up. It's also simply for writing code if I remember right. What I need is an entire environment for writing, compiling, running, etc. Thanks for the suggestion though. – Mathias Schnell Sep 25 at 16:54
Yeah, my N++ takes a good 30-60 seconds to start now and hangs all of the time. – Ed Swangren Sep 25 at 17:41
Notepad2 is so much better for me ! – Patrick Honorez Sep 25 at 19:22
vote up 1 vote down

Try out Netbeans, It has support for C/C++.

link|flag
vote up 0 vote down

What about Dev-C++?

link|flag
It's outdated and has been more or less superceded by Code::Blocks. Both of which still suck in comparison to modern IDEs IMO. (I've used both of them before) – Mark Sep 25 at 18:30
vote up 1 vote down

How about setting up crossplatform environment?

Subversion + MinGW/Cygwin + Eclipse/Subclipse

This suits my needs perfectly in the similar problem to yours :-)

link|flag
vote up 4 vote down

How about Qt Creator ?

Edit: It supports a cross-platform framework (Qt) on Windows and Unix/Linux (as well as OS X), it supports most revision control systems -- and you can even run it on Windows and Linux and it'll look and behave the same.

link|flag
vote up 8 vote down

How about Eclipse?

link|flag
vote up 21 vote down

It sounds like you would still prefer to use Visual Studio, so why not use Visual Studio Express?

link|flag
vote up 8 vote down

Have you looked at Code::Blocks?

link|flag

Your Answer

Get an OpenID
or

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