ide

Looking for a Python IDE with good support for libraries (Twisted).

I'm looking for a Python IDE that can help me easily locate and manage and use the libraries on my system (Ubuntu). Specifically Twisted. Code completion is important including the symbols I import. (I've so far had a look at PyDev as well as OpenKomodo, but while both offer code completion for default Python concepts, I wasn't able t...

IDE recommendations for C on Windows

Anyone have recommendations for a good C editor for Windows? Any improvement over the Emacs over ssh setup I have right now would be appreciated. ...

Strange VS2005 compile errors: unable to locate resource file (because the compiler keeps deleting it)

I AM GETTING THE FOLLOWING ERROR IN A VERY SIMPLE CLASS LIBRARY: Error 1 Unable to copy file "obj\Debug\SMIT.SysAdmin.BusinessLayer.Resources.resources" to "obj\Debug\SMIT.SysAdmin.BusinessLayer.SMIT.SysAdmin.BusinessLayer.Resources.resources". Could not find file 'obj\Debug\SMIT.SysAdmin.BusinessLayer.Resources.resources'. SMIT.SysAdmi...

IDE underlining custom attributes

I have a custom attribute... [System.AttributeUsage(System.AttributeTargets.All)] public class Refactor : System.Attribute { private string _message; public Refactor() { _message = string.Empty; } public Refactor(string message) { _message = message; } } Applied to [Refacto...

adding files to a project in Borland C++ builder X or MVS2008

Hi, being new to the Borland c++ builderX and MVS2008 IDEs, I would like to understand the proper way to add files to a project. Suppose if I have a created a project, add a C file say test1.c, compile and run it and get the desired results. Now if I would like to create another similar file test2.c which is similar to test1.c except for...

Visual Haskell 2008/2010

Does Visual Haskell for Visual Studio 2008/2010 exist? Or what are the alternatives to try it? EDIT: I've got a lot of alternatives but it seems that there is no Visual Haskell right now. ...

tool to export code to html

Hi there, I'm looking for a tool that can highlight code (ruby, php, javascript...) like with an IDE and then export the code to html format so that when opening the html page the code looks just like with the IDE Thanks. ...

VS2010 RC: Find In Files error: No files were found to look in.

I hit control + Scroll lock, control + break, and control + every other key on the keyboard. I have a feeling I am going to see this error in Visual Studio 2050. Does anyone know how to resolve it when it occurs? ...

ASP.NET ASPX Designer question. Bug?

Check out this Screenshot. Shouldn't a hierarchy list of tags appear here? Usually it appears. Sometimes, the tag "appears" there but without text (but the tag object is there as evident when you hover over it.) Other times, like this, nothing appears. It's a usual feature to see the hierarchy or tags which gives me easily access to...

Which IDE for Scala 2.8?

This is the same question for older version of Scala, but they say that Eclipse plugin has been improved vastly. Is it the best IDE now? How do different Scala IDE compare today? ...

ReSharper: Rename namespace not available?

I'm trying to rename a namespace. For some reason, ReSharper isn't giving me the option to do so. I right click on it and choose Refactor, but everything except "Convert" is greyed out. I try the key combination CTRL R + R, and it says the command is unavailable. What am I doing wrong? Here is documentation suggesting that what I am try...

Change namespace/filesystem folder names in Visual Studio

I'm trying to change a namespace in Visual Studio. My folder structure looks something like this: GameAlpha/ GameAlpha.sln GameAlphaRelease/ GameAlphaTest/ GameAlphaLevelEditor/ These include namespaces like GameAlphaRelease. I want to change all this to GameBetaRelease. Before this process, it bu...

Differences between Visual Studio 2010 RC and RTM

I have been using the RC version of VS2010 for a while now. I wanted to know if anyone has a summary of what changed between the RC version and RTM? I just loaded the RTM and noticed some small things different. I searched around but can't find anything around about it. If there is nothing out there that lists these differences, can w...

Any good, visual HTML5 Editor or IDE?

Hi All, Well it looks like Dreamweaver CS5 will try to smoother the HTML5 thing for a few more years (weeks actually). Seems like the next rung down is right to Notepad! Anyone know a good HTML5 editor with a visual/preview/style leaning? Eclipse with some pluggin? (Seems like the market will be begging for it soon.) Thanks ...By t...

What are the advantages / disadvantages of a Cloud-based / Web-based IDE?

I'm writing this as DevConnections in Las Vegas is happening. Visual Studio 2010 has been released and I now have this 3GB beast installed to my machine. (I'll admit, it has some nice features.) However, while the install was monopolizing my computer's resources I began to wish that my IDE worked more like Google Documents (instantly ...

VS2010 Implement Generic Interface expansion doesn't use specified type

Using the release version of Visual Studio 2010 I think there's a difference in the "Implement Interface" expansion from VS2008 If I speicify an interface and implement it in a class as so: public interface IRepository<T> where T : IModel { T Get<T>(int id); void Update<T>(T item); int Add<T>(T item); } public class Mo...

Is it possible to use Visual Studio 2010 to edit Visual Studio 2008 solutions without conversion?

I just downloaded the Visual Studio 2010 trial. It would be nice if I could try it out by doing some real work on some real projects, but I can't convert these projects to 2010 format, because then noone else could open them unless they also install VS2010. Is there any way around this? ...

Intellij-Idea: Marking all files of unknown type be type: text (so that they are searchable)

Many of my scripts etc in intellij are marked with a question mark. Then when I click on them them it prompts me: The file "bla" cannot be associated with a registered file type. Please choose one: <insert table of file choices> This would not matter except the files are not searchable (with ctrl-shift-n) until they are marked as t...

XSLT to PDF Preview

Hello, i would like to transform a XML into PDF using a XSLT. A killer feature would be a live preview of the result - so when i edit the XSLT, some seconds later (after transforming) the resulting PDF will display in a parallel pane. Does someone know an IDE fullfilling this requirement? ...

Which TextEditor is easiest to customize for a new scripting language?

It's been more than an year that i'm developing a new scripting language with its own grammar rules and constructs. I'd like to give the users of this language some minimalistic ide to work with, but i don't want/have time to make one from scratch so i'd like to take one already existing (it has to run on Linux platforms natively, so no ...