ide

VBA VS. VSTO what is the difference, should I upgrade?

爷,独闯天下 提交于 2019-12-03 16:12:31
问题 I am a huge fan of the KISS principle (Keep it simple) and a long time VBA for excel user. However all the articles I can find on VBA vs. VSTO (Visual Studio Tools for Office) seem very complicated. Firstly, I am sick of the very poor IDE built into Excel and I am looking for a new one. VSTO using Visual Studio as the IDE seems to be the only alternative. So I seek to understand what is the difference between VBA and VSTO to know if it is worth me learning to use VSTO? 回答1: Which toolset you

CLion inconsistent auto indentation for line comment

若如初见. 提交于 2019-12-03 16:12:30
There are some weird auto indentation going on in CLion that I don't understand why. Here is an example int i1(5); // some comments, then I hit Enter // auto indentation goes here. I hit Enter again // It goes here float f = 5; // some comments, then I hit Enter // then auto indentation goes here. I hit Enter again // It then goes here. float f2 = 6; // If I don't comment on the previous line, there is no weird indentation It seems like whenever I use = to initialize an variable, and then add comment at the end of the line, it will give me extra indentation on the next line. But in all other

Free C Language IDEs? [closed]

流过昼夜 提交于 2019-12-03 16:09:13
Closed. This question is off-topic. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . Googling for "c ide -C++" produces too many results for C++, as well as unrelated results. These search terms seem too short to produce relevant results. Does anyone have a link to a free, Win32 C IDE that does step-through debugging like Visual Studio? Many IDEs these days support very many languages, and most C++ IDEs have perfectly fine support for C. I'd recommend Code::Blocks , a Free, cross

What's a good Prolog IDE for Linux? [closed]

戏子无情 提交于 2019-12-03 15:31:27
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 6 years ago . I need to write some Prolog programs for a class. Any recommendations? 回答1: Prolog mode for (X)Emacs. See http://bruda.ca/emacs-prolog

Turbo C++-like editor [closed]

余生长醉 提交于 2019-12-03 15:30:43
do you know if there is some Borland's Turbo C++ clone text-only IDE or something similar for Unix boxes? I want to have a C++ IDE (editor/compiler/debugger) in text mode available through my console terminal. There is an application very similar, although not a clone, to Borland editors: FTE . http://setedit.sourceforge.net/ is like a maintained version of RHIDE. I had to patch a couple of lines to make it build on Ubuntu 12.10 though. 来源: https://stackoverflow.com/questions/5061200/turbo-c-like-editor

PyCharm and filters for external tools

左心房为你撑大大i 提交于 2019-12-03 15:30:02
问题 I'm trying out PyCharm for Django development and so far am extremely happy. My team strictly follows PEP8 formatting and we use the pep8 command line program to check to make sure our code conforms. I've configured an external tool command to run pep8 and it works good. I see the capability to create filters that will cause the output to be parsed into something PyCharm can use. I've read the docs and searched Google but can't find an example to make this work. Docs are http://www.jetbrains

IntelliJ Thread Debug

折月煮酒 提交于 2019-12-03 15:15:57
问题 Does IntelliJ IDEA provide thread-debugging? That is - Netbeans allows you to debug multiple threads, and halting at those breakpoints (automatically). However all I seem to be getting in IntelliJ is "thread dumping", which seems to be an analysis that is manual, and a snapshot taken when I clicked 'Thread Dump'. Is there something I'm missing? I have google'd and not found sufficient information to assist. 回答1: I think you can. I have suspended threads via breakpoints by setting the suspend

Howto ignore specific undefined variables in Pydev Eclipse

时光总嘲笑我的痴心妄想 提交于 2019-12-03 15:03:20
I'm writing a crossplatform python script on windows using Eclipse with the Pydev plugin. The script makes use of the os.symlink() and os.readlink() methods if the current platform isn't NT. Since the os.symlink() and os.readlink() methods aren't available on the Windows platform Pydev flags them as undefined variables--like so: Question: Is there a way to ignore specific undefined variable name errors without modifying my source file? edit : I found a way to ignore undefined variable errors from this answer on stackoverflow. I'll leave the question open in case there is a way to solve this

How do I get js2-mode to use spaces instead of tabs in Emacs?

Deadly 提交于 2019-12-03 14:57:06
问题 I am using js2-mode to edit Javascript in Emacs, but I can't seem to get it to stop using tabs instead of spaces for indentation. My other modes work fine, just having issues w/ js2. 回答1: Do you have (setq-default indent-tabs-mode nil) in your .emacs? It works fine for me in emacs 23.0.60.1 when I do that. js2-mode uses the standard emacs function indent-to, which respects indent-tabs-mode, to do its indenting. 回答2: Add this to your .emacs file somewhere after you load js2 mode: (setq js2

Brace highlighting in Visual Studio for Javascript?

你说的曾经没有我的故事 提交于 2019-12-03 14:53:16
问题 Is there a way to get Visual Studio 2008 to do matching brace highlighting for Javascript? If there is no way to do it in Studio, can it be done using ReSharper? Thanks!! 回答1: Note that Visual Studio will still find a matching brace in JavaScript via Ctrl + ]. 回答2: Here is an extension for VS2010 that will do just what you desire. And it's free! http://visualstudiogallery.msdn.microsoft.com/872d27ee-38c7-4a97-98dc-0d8a431cc2ed 回答3: You could give Visual Assist X a go: http://www.wholetomato