ide

IntelliJ IDEA won't load Groovy found on my disk

坚强是说给别人听的谎言 提交于 2019-12-30 09:01:53
问题 Hi I lately wanted to start developing in Groovy but when I try IntelliJ IDEA it won't load Groovy cause it says: Looks like Groovy distribution in specified path is broken. Cannot determine version. Whats going on I even tried some older release and it didn't work either :( Did someone have same problem or knows how to work that out? 回答1: It's a known issue: IDEA-170022 Cannot create Groovy project, because cannot create Groovy library (2.4.10 version) As a workaround you can use Groovy 2.4

Why Delphi says 'cannot resolve unit name xxx'?

两盒软妹~` 提交于 2019-12-30 08:16:13
问题 I'm working with Delphi2010 Enterprise Update 4. When I'm opening my project in the IDE and displaying the mainform code, there are 2 unit names underline in red . xxx http://img268.imageshack.us/img268/6475/unitnameunresolved.png. I have verified that the path to the unit source is in the Library path and in the Browsing path . Surprisingly, when I'm doing a right-clicking on the unit and selecting Open file at cursor , it works (ie. delphi opens the right unit). Any idea about that ? 回答1:

External Exception EEFFACE in Delphi

自作多情 提交于 2019-12-30 07:54:06
问题 While debugging my application with Delphi 2009, I sometimes get the following exception occurring: (source: beholdgenealogy.com) This only happens occasionally, but after pressing OK, then my IDE and program both may freeze. If I am lucky I can sometimes do a File/SaveAll in Delphi, but sometimes I can't. Either way I am stuck and then the only thing I can do is use Windows Task Manager to shut down Delphi. Of course, if I was unable to SaveAll, then I lose all the edits I had made since

How to include the lib folder in the manifest classpath in Netbeans

放肆的年华 提交于 2019-12-30 07:29:07
问题 A library that my java application uses needs looks for a file (log4j.xml) in the class path. I use netbeans to manage my project, but I can't find a way to include the lib/ folder. Netbeans automatically creates a MANIFEST.MF file inside the application jar and also creates a folder called lib/ which includes all dependencies. This manifest specifies a Class-Path attribute that overrides any -cp argument provided on the command line. I can select an arbitrary folder in netbeans' library

Hide Properties/Toolbox Pane when not in Resource View?

三世轮回 提交于 2019-12-30 05:48:08
问题 Every time I view a form or dialog in Visual Studio (2005) the Properties and Toolbox panes show up on the right side of my screen. That's good to have because they are useful for manipulating dialogs. However once I switch back to source code these panes just get in the way... is there a way to get them to go away automatically? 回答1: I've done something recently in VS2010 using a macro that shows and hides the Tools panel when switching back and forth from code to design view in asp.net MVC3

Slow context menu in Visual Studio 2015 on right click folder in web project

旧时模样 提交于 2019-12-30 05:40:27
问题 Some of our team who are trialing VS 2015 on Windows 10 Pro 64 bit are seeing this issue: Visual Studio 2013 context menus slow only in web application project When right-clicking a folder (only a folder in a web app project) there is a lengthy delay in rendering the context menu, as well as any dialogs. Installation details: Microsoft Visual Studio Professional 2015 Version 14.0.23107.0 D14REL Microsoft .NET Framework Version 4.6.00079 Installed Version: Professional Visual Basic 2015 00322

Macro to wrap selected text with tags in Visual Studio

百般思念 提交于 2019-12-30 04:33:08
问题 I realize that I may be being a bit lazy, but does anyone know of a Visual Studio macro, where I can select some text inside of the Visual Studio IDE, click a button, and have it wrap the selected text with tags? It would generate something like: <strong>My Selected Text</strong> I would even be up for creating a macro, just not sure where to exactly start! 回答1: The code to do so is rather simple: Sub SurroundWithStrongTag() DTE.ActiveDocument.Selection.Text = "<strong>" + DTE.ActiveDocument

Smallest IDE for PHP with code-completion?

a 夏天 提交于 2019-12-30 03:20:13
问题 There are plenty of small editors like Notepad++, vim, & SciTE - but they only work on one file at a time. In other words, they aren't aware of the whole scope of the codebase. On the other hand, all the full IDE's I have seen which offer code-completion (over all files in a project) take a good amount of memory to run. Eclipse PDT, PHPStorm, etc.. I'm looking for a tiny IDE with nothing more than code completion and syntax coloring to move around some very limit dev systems running PHP. Is

How can i disable Cider (WPF Gui Editor) within VS2008?

試著忘記壹切 提交于 2019-12-30 02:08:05
问题 when developing wpf applications i never use the graphical editor ( aka cider). only the xaml editor. as "cider" needs quite some resources when loaded i wonder if there is a way to completely disable it. This may speed up loading xaml files. i heard that this is possible, but as google does not return what i`m looking for, i want to ask the SO community. any ideas? regards 回答1: It's quite simple! At the Tools menu, chose Options, and chose "Text Editor" at the left pane. Expand it, and chose

What is the difference between a source folder and a (normal) folder

纵饮孤独 提交于 2019-12-30 01:54:04
问题 I'm following this guide: Spring MVC and I realized that I do not know the difference between a source folder (src) and a plain folder. I'm using eclipse, so maybe the difference is only useful in an IDE? Also, I've noticed that java classes tend to go in src folders; whilst every other file goes into a plain folder (or the project root folder). So, What is the significance of the source folder (src)? Why use a source folder over a plain folder? Thanks! 回答1: A source folder is marked by