ide

Available IDE for CLI only Debian Linux distro

Hi Guys! I don't know if I am being clear with my question. I would like to ask for suggestions on the available IDEs that you I use in a command line interface (CLI) only linux distro. I am using debian. I want to program in C or C++ and I could not start because I dont have an ide or just a simple text editor. I don't have an idea how ...

Can FDT deal with .fla files or not ?

I'm trying to find an all-in-one IDE for flash, one that can deal with various flash related files. I just read this answer and it recommends fdt, but seems fdt can only deal with scripts but not .fla ones. Which IDE should I use so that I can use it to develop various files involved in flash developing? ...

How do I force MyEclipse to hot-deploy a JavaScript file to my JBoss instance?

I'm having trouble with MyEclipse 7.1.1 hot-deployment of files to my JBoss 4 server. The problem is this: while my server is running, I can make changes to various JAVA and HTML files, which are then hot-deployed immediately (I can see the changes reflected in my browser when I refresh the page). However, while working on a particular ...

How to see full compile path in Eclipse?

I have looked for an answer for this nearly every where that I can think of, but there doesn't seem to be any way to actually SEE what Eclipse "runs" to compile the projects (as it does need the JDK installed and visible to actually build). I ask because I imported a few jars into my project, and even though I've looked through all the j...

How do I set Environment Variables in Visual Studio 2010?

How do I set Environment Variables in Visual Studio 2010? I found this web page: http://msdn.microsoft.com/en-us/library/ee479070.aspx Which says: From the Project menu, choose Properties. In the left pane, select Configuration Properties, and then select Environment. But when I select "Configuration Properties", there is no "Envir...

Display Eclipse tabs on several lines

I'm using eclipse galileo. Is it possible to display the tabs of my open files on several lines instead of using the >> sign. I still want a unique window to view the code though. If there is no such settings, do any plugin exists ? ...

How to implement automatic replacement of typos in Delphi2010

I am looking for a way to develop a plugin for Delphi 2010IDE and have yet to find any information on that topic, not even on how to get started. What I want to accomplish is some kind of auto-spellchecker wich can be given a list of common typos (flase instead of false, .cerate instead of .create and the like) and replace them with the...

Experimental IDE concepts

I am interested in building a new style IDE for a side project. Mainly to do away with the normal notepad on steroids IDE. I am looking for some inspiration for things that have been tried or that you have seen (or not) that looked cool and would be useful to have in an IDE. Things that I can up with are: http://digitaltools.node3000...

java ide applet

I'd like to be able to graphically design java web applets like you can do with standard desktop java programs in netbeans...but I can't seem to be able to do that in netbeans. Any ideas on programs, or maybe I'm not doing it right in netbeans. Thanks. ...

Has anyone else experienced keyboard errors with VS 2010?

Here's the situation: I'll be coding away in VS 2010, when all of a sudden the keyboard starts acting flaky. The up/down arrows will stop working, cut and paste keys will stop working, etc. The only way to fix it is to exit out of the IDE and then restart it (which is a pain). This will happen several times a day. I know the problem is ...

tools / IDE that highlight function definition on which files [just wondering]

hi guys is there already any IDE / tools that if you highlight a function name, it will open the file where that function is defined on the next window so we could understaand what that function does? you know just wondering. ...

Is there an option analogous to Delphi "Use debug DCUs" in Lazarus

I'd like to debug Lazarus library code. In Delphi IDE I would simply check the Project Options -> Compiler -> Use Debug DCUs option on. Is there something similar in Lazarus? ...

Where can I get a good set of IDE icons?

I'm developing a small IDE, and I'm wondering where I can find a set of IDE icons. A few google searches didn't turn anything up that was too useful. I suppose that's probably because an 'ide icon set' wouldn't get very many purchases (compared to more generic icons). In any case, does anyone know where I can get some such icons? Certai...

Is there a simple but powerful IDE for C/C++?

Possible Duplicate: C++ IDE for Linux? I'm looking for a suitable for me IDE for C/C++. I'd like not to use projects etc, the main idea that I've accustom is to compile a file (not build a project) and run a compiled program then. So things like code::blocks as well as M$ VC are not for me... well, there is FreePascal IDE that...

Searching for VB6 IDE debug bar option

Do you know which is the option to display the left grey bar on code page on VB6 Ide? It's the bar used to toggle breakpoints for debugging (same effect of f9 but using mouse click)? It disappeared on my IDE and i can't find the option to take it back. ...

Writing and debugging ansi c code in Visual Studio 2005

I'm writing an ansi c program in vs2005. Everything compiles ok and I can run the program from command line. BUT, if I run it inside the IDE then the app finishes and closes - ignoring all break points. why? help! ...

Problem with VS 2010 IDE when removing event handler using properties window

Here's the steps to reproduce the problem : Create a c# project with a form with 1 control, let's say a textbox. Using the properties window (lightning bolt thingy), add a "click" event. Write some code in that method. Using the properties window, remove the content of the "click" event cell. I would like to know why is the code from...

What are the advantages of using vim to program Ruby (over Notepad++)? (other languages, too, but specifically Ruby)

I've been using Notepad++ for a while; in fact, I've even started using Launchy for that "load this resource into the editor right now" functionality that many fuller IDE's like Eclipse has. It has syntax highlighting, split window view, code collapsing, parentheses (and other delimiter) paring, automatic indent, block commenting. Howe...

Doesn't C++ IDE Netbeans or Eclipse support class inheritance?

Hi, I am using NetBeans IDE 6.8 to create C++ project. While I use class inheritance, however, it seems to me that it does not recognize the derived class. Here is what I have: class A { public: A(vector<double> a, double b) {...} }; class B : public A { public: additionalfunction(...) {...} }; main() { vector<double> c = ...

How to wrap panel output in IntelliJ?

I recently converted to IntelliJ, love it. How do I get panels, such as log output, IDETalk, etc. to wrap their contents? ...