ide

Delphi compiler warnings pointing to Delphi's own units

*爱你&永不变心* 提交于 2019-12-10 03:49:02
问题 In Delphi 2007, working on a project which includes a custom component, I'm getting this set of warnings as the first four in Messages when I do a full build (but not when I do a straight compile): [DCC Warning] Dialogs.pas(1426): W1002 Symbol 'TFileOpenDialog' is specific to a platform [DCC Warning] Dialogs.pas(1446): W1002 Symbol 'TFileSaveDialog' is specific to a platform [DCC Warning] ComCtrls.pas(6757): W1036 Variable 'Section' might not have been initialized [DCC Warning] ComCtrls.pas

In Visual Studio 2013, what does this black arrow-shaped symbol in the breakpoint bar mean? [duplicate]

馋奶兔 提交于 2019-12-10 03:41:45
问题 This question already has an answer here : Black dash / line on visual studio 2012 left margin (1 answer) Closed 4 years ago . Somehow, one of the lines in my source code became marked with a black arrow-shaped icon pointing to the right. I'm familiar with bookmarks and breakpoints, but I can't find a clue about this one. It is the top-most icon in the screenshot below. What is the purpose of this symbol? 回答1: That icon indicates that the line is a Find Result from the last time you did a

How do you combine two tabs into one floating window in Intellij?

被刻印的时光 ゝ 提交于 2019-12-10 03:16:56
问题 In Eclipse I can just drag-and-drop two tabs into one window. For instance, I like to keep my JUnit and Search tabs together: How can you do this in Intellij? 回答1: You can't combine multiple floating panels into one in IntelliJ IDEA. Feel free to submit a feature request. 回答2: It seems there is no such feature in IntelliJ (at least as of version 11). In my opinion, IntelliJ has much less support to dual monitor than Eclipse. There is an existing feature request: http://youtrack.jetbrains.com

Go tests debugging

不打扰是莪最后的温柔 提交于 2019-12-10 03:14:47
问题 Is there a way to debug tests in Go using an IDE like IntelliJ ? I am using the Go plugin for intelliJ and seems like when providing a debug configuration, the debug button is disabled. 回答1: It is possible in Gogland: 1.0 Preview, Build EAP 12, 172.3757.46 . This version has an expiration date: November 9, 2017, but there are already newer versions released and they probably have later expiration dates. 回答2: Currently it's not possible to debug tests, please watch over this issue to see when

How can I clean the Parameters field in the Run -> Parameters menu?

萝らか妹 提交于 2019-12-10 03:12:20
问题 I'm using the CodeGear RAD Studio IDE. In order to test my application with command line parameters I used a few times the "Parameters" field in the "Run -> Parameters" menu. But every time I provide it with a new value, it could not be deleted from the "dropdown box". I need to clean this field (erase all the values), since in some cases there is information on them that I don't want to share with people that occasionally could use my machine. How can I clean this field? 回答1: The Delphi 2007

Android code folding the Switch block

纵饮孤独 提交于 2019-12-10 03:09:03
问题 Under Android Studio 1.0.2 is there a way to fold the block of code for a Switch conditional statement? I could not find how to do it online or in File > Settings. 回答1: Select the code block and right click to choose fold code block (it "says" Ctrl-Shift-Period but Ctrl-Shift-Period doesnt really do it....) 回答2: To fold an arbitrary selected block Select contiguous fragment of code in the editor. On the main menu, choose Code|Folding|Fold Selection/Remove Region, or press Ctrl + Period Source

Delphi: keystroke or IDE option to populate interface elements on a class

百般思念 提交于 2019-12-10 03:07:29
问题 I am looking for any IDE menu option, keystroke, shorcut, mouse clicks or something to populate all interface elements (methods, properties, etc) inside a class implementing it. Are there any way to do it ? 回答1: There is no such shortcut, sadly. A rather similar question was asked recently here: How to automatically implement inherited abstract methods in Delphi XE 回答2: There is a shortcut that will let you autocomplete your class: Ctrl + Shift + C will autocomplete your functions, procedures

What tools are available for Ruby refactoring? [closed]

自闭症网瘾萝莉.ら 提交于 2019-12-10 01:59:15
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . Are there any tools which support refactoring Ruby code (Rename method, Rename class, Extract method, Move method, ...)? The best I know is RadRails 2, but Aptana 3 removed this tool. Netbeans doesn't support Ruby on Rails anymore (it has community support) Komodo just promises it Is there any such tool

In Delphi 7, can I set up 'Debug' and 'Release' modes?

£可爱£侵袭症+ 提交于 2019-12-10 01:33:40
问题 In most modern IDEs, you can have Debug and Release build configurations, and you can quickly switch between them. In Delphi 7, this does not seem to be possible. I have to go to Project Settings and toggle optimization and all the debug information stuff manually. It would be great if there was a plugin or some such that handled this for me. Does anyone know of one? Any other suggestions? Edit: I can't upgrade to Delphi 2007 or 2009 as we have a large Delphi 7 codebase which would have to be

How can I make all of the IDisposable classes colored differently in the Visual Studio IDE?

删除回忆录丶 提交于 2019-12-10 01:23:55
问题 Title covers it all. I'd like classes which implement IDisposable to show up in a specific color so I can know if I should wrap them in a using block. Is there a setting or a process by which you can extend the IDE? 回答1: It is certainly possible to do this though it isn't as simple as just changing a setting. You would need to write a Visual Studio addin to accomplish this. Visit http://msdn.microsoft.com/en-us/vsx/bb980955.aspx to get started. As others will point out. This is not for the