ide

How to “scan” the full list of currently-installed VCL components

折月煮酒 提交于 2019-12-04 12:45:26
问题 I still haven't found a truly satisfactory answer to this question, and am now considering rolling my own. I have ModelMaker and GExperts, and neither seems to load the comprehensive class-hierarchy I am looking for. As well, I don't think the folks at DevExpress will fork over the CDK code which compiles a full class list to inherit from... ;-) SO... If ALL I want to do is build a self-referencing table of all registered component classes (or even all classes including non-components, if

Tools and best practices to understand somebody else's code [closed]

拜拜、爱过 提交于 2019-12-04 12:28:39
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 4 years ago . Sometimes one needs to dig into someone else's code, understand it and maybe refactor/fix it. So I'm wondering what tools/practices do you use to do that? It's not about any specific language or platform, rather some advises in general. I myself find it very useful to run the

PyCharm debugger doesn't work

我的未来我决定 提交于 2019-12-04 12:17:02
I just downloaded PyCharm community edition and every time I try to debug any Python program in PyCharm, I get this error: C:\Python31\python.exe "C:\Program Files (x86)\JetBrains\PyCharm Community Edition 2016.1\helpers\pydev\pydevd.py" --multiproc --qt-support --client 127.0.0.1 --port 59207 --file C:/Users/Gal/PycharmProjects/untitled/test.py pydev debugger: process 5388 is connecting Connected to pydev debugger (build 145.260) Traceback (most recent call last): File "C:\Program Files (x86)\JetBrains\PyCharm Community Edition 2016.1\helpers\pydev\pydevd.py", line 1530, in <module> globals =

Python and Django IDE with remote editing?

a 夏天 提交于 2019-12-04 12:14:06
问题 I'm looking for an IDE that will allow me to edit remote Python projects and also has decent Django support, remote command execution, and maybe remote debugging. I've tried PyCharm and Aptana with PyDev but I'm not having much luck configuring them for remote editing. Thanks for your help! 回答1: I have Pycharm setup on a Ubuntu 10.10. The key is to use "sshfs" - it maps to my web-host - via ssh. Those are the pre-reqs : ssh access, sshfs. (unless you can figure out a way to map ssh to a

setup of xamarin studio to work with PCL & MVVMCross

若如初见. 提交于 2019-12-04 11:50:27
问题 I really enjoy Xamarin Studio and I'm looking for a template solution to start developing a cross devices application with MvvmCross. But I can't find how to set a project to work with PCL and MvvmCross with Xamarin Studio. If anyone can give me a link where I can find a tutorial to make it, it would be awesome. I would be very pleased to contribute to this community by giving my feedback and providing some tutorial about how to start using Xamarin Studio, PCL MvvmCross and get rid of Visual

Is there any F# IDE that works over Mono?

时光总嘲笑我的痴心妄想 提交于 2019-12-04 11:34:09
问题 I am using F# on a Mac and I wonder kbow if there is any F# IDE that works over mono (not a general purpose editor). It seems that there is an addon for MonoDelvelop, but I think it may no be mature enough. Any suggestion ? 回答1: strong text I actually started working on a new F# binding for MonoDevelop. I'll post the news as soon as I have something worth sharing. Strange, seems like I can't add a comment to my answer... Anyway, I'd like to start with basic functionality that allows for

Eclipse - An internal error occurred during: “Compute launch button tooltip”

谁说我不能喝 提交于 2019-12-04 11:31:17
问题 I launched Eclipse earlier to jot down a snippet and was faced with the following as an error when I tried to run a fresh project: An internal error occurred during: "Compute launch button tooltip". That popup window shows as soon as I mouse-over the run icon in the top bar, or if I right click on the class in the explorer window and select any of the run/debug options. After doing some research on the error, I see several people who posted similar messages but they all have been fresh

How to get eclipse to recognize preprocessor statements?

懵懂的女人 提交于 2019-12-04 11:21:52
I've managed to get the IDE to compile the java project correctly by modifying the config.ini, but the IDE itself is still showing errors concerning the processor statements: //#ifdef VER_X public class Video extends FirstCanvas { //#else public class Video extends SecondCanvas { //#endif ... Is there a setting or a plug-in that would solve this? EDIT: Maybe a little clarification: I'm looking for something that will make the IDE editor more compliant with the code. It won't let me follow any definitions because of what the editor THINKS are errors. A more OO approach to this would use

Oo javascript code completion in any IDE

泪湿孤枕 提交于 2019-12-04 10:06:27
Do you know any IDE which can autocomplete this kind of code? I have a javascript class generator here: (function() { var core = { bind : function(method, scope) { if (!( method instanceof Function)) throw new TypeError("Function needed as method."); if ( typeof (scope) != "object") throw new TypeError("Object needed as scope."); return function() { return method.apply(scope, arguments); }; }, require : function(source) { if ( typeof (source) != "object" || !source) throw new TypeError("Object needed as source."); for (var property in source) if (source.hasOwnProperty(property) && !this

“There are no property pages for the selection” error in Visual Studio

怎甘沉沦 提交于 2019-12-04 09:54:16
When I go to edit a properties page in Visual Studio 2015 with C++, I'm always getting the error, "There are no property pages for the selection." This usually happens when I'm switching from one Platform to another (e.g. x64 -> Win32). Usually it will work if I switch the platform from the main window, but if I try to switch it in the Property Pages, I always get that error. Thanks for the help. I think this is a bug that has been in Visual Studio since forever. Through experimentation I have discovered that you only hit this bug if you open the project properties by going to the Project menu