ide

Language+IDE for teaching high school students?

I'm investigating languages and IDEs for a project involving teaching high-school students (around grade 11). It will teach basics of programming as an introduction to computer science (e.g., including how numbers/strings/characters are represented, using procedures and arrays, control flow, a little bit of algorithms, only very basic I/...

how to add lines numbers to : QTextEdit ?

i am writing a visual basic ide , and i need to add lines numbers to QTextEdit and highlight current line . i have found this tutorial but it is written in java and i write my project in c++ so where to find tutorial like that in c++ , or if there is a ready to use component ? thanks . ...

How to Implement "Code Bubble" like User Interface?

The new Code Bubble IDE has been in the news. I wonder if there are useful libraries to implement this kind of interface (for other applications)? I prefer java or python. I understand Code Bubble has been implemented on Eclipse. ...

Would you use Code Bubbles?

I've read this question mentioning Code Bubbles and I've watched their video presentation. The video is impressive, and does seem a little bit futuristic, but apparently it's somewhat real. But that kept me thinking... Would a developer really use such tool? We, as developers, are used to deal with code files, organizing them in direc...

Highlighting modified lines in Eclipse

In netbeans, if I open a file which is under version control the lines which are modified are highlighted in the left. (green for new lines and blue for modified lines) Is it possible to get a similar effect in Eclipse? ...

How to avoid automatic renaming of sub signature parameters in visual basic 6.

In Visual basic 6, i declare a sub like this: Private Sub test1(ByRef XmlFooOutput As String) ... End Sub Aafter that, I declare another sub like the following one: Private Sub test2(ByRef xmlFooOutput As String) ... End Sub Automagically, the first method is transformed in: Private Sub test1(ByVal xmlFooOutput As String) ....

What are the best AJAX development tools?

Hi there, can anyone please help me to identify the best AJAX development IDE or tools base on the advantages and disadvantages? Thank you ...

parse/collator for php

I'm pretty much a newbie at php (at the "install an app and try to tweak it a bit" stage). Is there a tool anywhere which can take a script which is spread over many files and show you all the code which is processed (for a given set of arguments passed to the script) in a single output? For example, I want to make a call to zen cart f...

Search hidden text with incremental search

In Visual Stuido 2005 (C# .NET), is it possible to search through hidden text with the incremental search (Ctrl+I)? In the Find an Replace window I have the checkbox "Search hidden text" checked. But that doesn't seam to apply to the incremental search. ...

What IDE setup and workflow is used for OSGi development?

I made quite a few easy OSGi test projects in Eclipse RCP. My typical workflow would always be: Make 3 different projects: APIproject, Clientproject and Serverproject Edit the MANIFEST.MF of APIproject to export the api package Edit the MANIFEST.MF file of Clientproject and Serverproject to add the required API package Choose "Run as.....

make eclipse javadoc my project

Is there a way to make eclipse go through my project and add javadoc to all the method headers? Possible authors to the classes? ...

Custom components vs default components in GUI Design. Which is more practical? (.NET)

Ok, so is it better to create my own components (Either inherit them from existing ones or creating them from scratch) or to use the ones that come by default? I'm asking this under the umbrella of scalability, overhead and other factors that my contribute on each of the choices. UPDATE: Sorry if I'm to vague. I don't really know how ...

What software should i use to work with Ruby?

I've only ever learned to "program" with notepad when I was learning to create batch files in Windows. I would appreciate if you can explain to me the benefits of working with an IDE over a text editor or vice versa. Please don't give emotional responses or argue someone else's suggestion/advice. I use Linux primarily. Also, I would lik...

Delphi 2010 buttons losing click event

I've been experimenting a quite strange problem using Delphi 2010. In one form (a quite complex one) some buttons are automagically losing the click event. I am not dynamically assigning the event or something (they are wired in IDE). The events are fired OK some times but suddenly (and randomly) some of them don't fire the events anymor...

Any experiences using SharpDevelop to build an ASP.NET MVC app?

I've always used VS for .NET development, but am just wondering about the alternatives around now. I'm especially interested in use for ASP.NET MVC development. I'm not bothered about any of the visual design aspects of vs, but of course love intellisense and the debugging features. So, for anyone who has tried SharpDevelop when doing...

Opening a project in an IDE / editor over Samba = SLOW

I'm not sure if this is the correct forum to ask this question so I'll probably be told about it, but anyway - I'm connected to the Samba share on my companies development server from my home (where I work now), and when viewing the files through explorer (windows 7) the browsing is relatively quick. However when I open a directory on t...

Compiling C code in Windows XP

I have C code that was compiled on Windows NT with Microsoft Visual Studio 6.0. I am migrating this code to a new machine using Windows XP. What IDE is suitable for this? I don't think MS Visual 6.0 has been designed for XP... Can I just use Visual Studio C++ to compile C code and keep the same functionality? ...

What are the optimal checkstyle settings for MethodLength and FileLength?

I am starting a new Java web project that will be worked on by up to 10 developers. It will probably be hard to change once the codebase grows large, so what are the best checkstyle settings to use for methodLength and fileLength? ...

How to detect that code is running inside eclipse IDE

How to detect that code is running inside eclipse IDE ...

Executing a file not a project

I use Aptana Studio for my PHP projects. I have not learned it but just used with what I was able to do in it. Many features I still don't know how to use in it. At present, I have a HTML form and I want to write a .php script for the SEND button that it has. It is a submission script for the contact form. I want a simple PHP IDE with ...