ide

IDE for PHP?

Is there any good IDE for PHP which is lite, accessible and has basic features like file management and code completion? The biggest bad thing about php development is that it's lack of a good IDE. Which IDE are you all using for PHP development? ...

In what order does Class Completion put its results?

Example: I create a new unit, declare a class with several methods like constructor, destructor, method1, method2, method3 in that order and then hit Ctrl-Shift-C. The IDE creates all the method bodies automatically, but the order is mixed up and not as it was declared in the interface section. Now, this is not a problem, but is there a...

Portable Programming IDE

Frequently I'm brainstormed with programming ideas that I would like to directly code. More or less like "Wow, that algorithm will rock! I need to write it now!". For this kind of "impulse" to write, I use http://www.jarte.com/ that is a cool portable text editor. If I'm near a cybecafe or a friend computer, I just plug the usb pen driv...

Can I have the Code Editor for C# in Visual Studio 2008 show a line separating methods?

Sorry for the dumb question, but... I'm moving from VB to C# and this is really bugging me. Is there a way to convince VS 2008 to draw a line separating my methods like it does for VB? I'm really used to those, and i'm used to doing //------------------------------------------------------- myself in Javascript. I'm hoping I won't ha...

what is the best free windows c++ IDE/compiler

What is the best free windows c++ compiler, ideally cross-platform. I've tried Bloodshed, Ganymede, EasyEclipse, Visual C++ express. Visual C++ express is the only one I've been able to get the debugger working on! ...

Needed: Light and free HTML editor with source control support

We're not doing real web development. We get our HTMLs from our designers, and have our web app generate those HTMLs (with some specific content). Simply put, we don't use any major web development infrastructure (ASP, PHP, JSP etc). Having that said, we sometimes do need to edit HTML, JavaScript and CSS files, and I'm tired of using roc...

python sleep == IDE lock up

When my script sleeps for 50sec my IDE locks up which is very annoying. I cant switch tabs, look through my source, type code, etc. It happens in pylde and pyscripter, i havent tried other IDEs. What can i do to fix this? i'm actually doing for i in range(0, timeInSeconds): time.sleep(1) hoping the IDE will update once per second but...

Text editor / IDE for Ruby similar to DrScheme

For those who haven't used DrScheme, window is split in two parts: one part is a file you're editing, and the other is interactive shell. When I run a file, it is loaded into interactive environment, so I can invoke functions I've defined etc. Interactive environment still has all the features of text editor (syntax highlighting, auto co...

Connecting to a remote server using Visual Studio

I am trying to add a remote server to "server explorer" (not a data connection) so I can view Event Logs, Services etc. I keep getting the following error: "Could not reconnect to 'mail'. Make sure the machine name and path are valid." 'mail.domain.com' is what the IP address I enter resolves to (this is due to the email server being ...

python, funny business with threads and IDEs?

Maybe i cant do what i want? I want to have 1 thread do w/e it wants and a 2nd thread to recv user input to set the quit flag. using this code i want to enter q anytime to quit or have it timeout after printing hey 6 times import sys import threading import time class MyThread ( threading.Thread ): def run (s): try: ...

Python IDE built into Visual Studio 2008?

Hi I develop in Visual Studio 2008 a lot and would like to find an addin like vsphp which enables intellisense and debugging in Visual Studio. Is IronStudio what I am looking for? As far as I understand IronStudio is a Plugin for .NET. If there is no Plugin for Visual Studio 2008 whats a great IDE for a python newbee who loves Visual S...

How to use multiple tabs when tagging to a function in Vim

I use ctags with my Vim and I rely heavily on C-] and C-T to tag back and froth between various functions in my project. But if the function is in a different file, I'd like Vim to automatically open it in a new tab instead of the current tab. If I pop my tag stack using the C-T, I'd like it go back to the original tab where I pressed b...

Visual Studio Vs Visual Web Developer

I am trying to write a web application using ASP.NET MVC. I prefer C# as the programming language. Which IDE is better to use for this purpose? Visual Studio or Visual Web Developer? What are the features of the IDEs? What are the benefits of using one over the other? Thanks in advance. ...

Visual Studio - Automatically refresh class view when changing class.

Hi, I come from a Java background and have spent many years using Eclipse. One feature that I miss when using Visual Studio (2008) is that the class view does not automatically refresh when I change class. In Eclipse it has a (class) 'Outline' window which represents the current class and shows methods/properties etc, this always update...

What is the most efficient way to cut/paste in Visual Studio?

I find that I am cutting and pasting a LOT when I program. For example, method, variable and class names are things I regularly cut/paste. I do use "ctrl+space" after typing part of a word to autocomplete them or popup intellisense when there's duplicates found. But just for straight copy/pasting do you guys have any good shortcuts/tr...

Microsoft Intellimouse Scroll Wheel Not Working with Netbeans 6.5 on Vista

I would appreciate any help with this problem, I have spent hours trying to diagnose it myself to no avail and haven't received a single response when posting it to the Netbeans user list and the bugs list. Netbeans is an excellent IDE, and I have loved it since switching over from Eclipse a few months back. I do Java on Unix and Win32...

Tortoise SubWCRev.exe Pre-Build Event

Hi, I run the following command as a pre-Build event in Visual Studio 2005 and it works fine: SubWCRev.exe "C:\work\subversion\aviOffline .Net\trunk" "c:\test.tmpl" "c:\testout.txt"C:\work\subversion\aviOffline .Net\trunk" So I change the command to use the in-built Visual Studio macros for better maintainability but it fails. It ...

SharpDevelop or Express editions

Since there is a Sharpdevelop 3.0 ( http://www.icsharpcode.net/OpenSource/SD/Download/ ) can anybody tell me how it compares to the Express Editions ? ( http://www.microsoft.com/Express/ ) I tried to find differences, but could only find this old post http://community.icsharpcode.net/blogs/mattward/pages/VisualStudioExpressComparison.as...

Visual Studio Search Issue.

I have a problem in VS2005. When I try to search files with the regular expressions option I just get an error message stating Unknown argument for ':' operator. Complete Regular Expression required in search string. The pattern that i'm trying to use is valid, and works in other text editors it is: <asp:textbox.+?(type="text"|size...

Pre-Build Events in VB6 Ide (similar to Visual Studio 2005)

Hi, Does anyone know if VB6 IDE has the ability to run pre-build events prior to making and compiling the code (this is for creating a .vb file from a template file for subversion revision numbers to be compiled into the code using SubWCRev.exe). Thanks ...