ide

Error “Cannot change Visible in OnShow or OnHide” in Delphi IDE

拜拜、爱过 提交于 2019-12-02 04:33:00
问题 I have a very strange problem with the Delphi 2006 IDE. If the IDE is minimized, and the PC is locked. I return to the pc, unlock it and maximize the IDE, I sometimes get the error "Cannot change Visible in OnShow or OnHide". If this happens, I have to kill the IDE with the taskmanager. Is there anybody out there who has the same problem? And if possible a solution? I suspect that some third party components are involved, but my coworkers never experience this error. 回答1: Yes I have noticed

Integrate Shoes into Aptana Studio RadRails

折月煮酒 提交于 2019-12-02 03:51:07
问题 How can I run my Carpet applications directly from Aptana Studio with RadRails? Setting the shoes.exe as VM/Interpreter won't work. 回答1: If you have the file in a Ruby project, you can do the following: Go to Run -> External Tools -> External Tools... Create a new tool, name it something (like, say, "Shoes") Set Location to the Shoes binary, for example, on my system it's C:\Program Files\Common Files\Shoes\0.r1134\shoes.exe Set Working Directory to ${workspace_loc}${project_loc} (You can

IntelliJ: (Keyboard shortcut to) jump to next / previous suggestion

醉酒当歌 提交于 2019-12-02 03:20:51
问题 I know how to jump to the next and previous error ( F2 , see SO Link, jetbrains.com), but is there a way to easily jump between suggestions ? If possible, I would really love to have a keyboard shortcut for this, as I am currently learning Kotlin and IntelliJ often has nice suggestions on how to improve the code. If there is no keyboard shortcut to jump between suggestions, is there at least any other way? With suggestion I mean things like the following (Ignore the "nonsense code")): 回答1: F2

Tracking file in Netbeans IDE Projects window

China☆狼群 提交于 2019-12-02 03:20:00
Just getting hands on with NetBeans 8.0.2. Wondering if the IDE has similar features as Eclipse or Visual Studio like Track current file in Projects explorer - When working with large projects, with lots of files open, if I want to navigate to current file in projects window it is getting difficult. On top of it, the project explorer is showing the folders/files in a case sensitive manner resulting difficult to locate the exact file/folder. Is there a settings or two to control this behavior? For the first part: use the option "View -> Synchronized Editor with views" to automatically select

How do I save and restore all the vb6 ide settings?

心不动则不痛 提交于 2019-12-02 02:53:40
问题 I've seen this tip on DevX which should ' account for most of the Visual Basic IDE settings '. Does anyone whether this is sufficient or whether there are more settings out there? 回答1: It looks pretty complete, however if you have custom Add-Ins this will not get them. I did a quick search of my Add-Ins and I don't see any generic way of backing them up as they have their own registry keys. The HKEY_CURRENT_USER\Software\Microsoft\Visual Basic\6.0 has an Addins sub-folder so if you have

Frame inheritance and duplicate files in packages

邮差的信 提交于 2019-12-02 02:13:23
I have been developing a number of components using TFrames and ModelMaker -- I've found the combination of visual design/development + inheritance + ModelMaker to be very compelling. I then register these TFrame descendants w/a registration unit, and they become full-fledges palette-based components from there. I'm using Delphi 2007. Early in my learning about the little "snags" of this process, I found that a number of the problems I would run into with TFrame descendants streaming incorrectly (often appearing as forms in the IDE, rather than frames) could be completely eliminated by

netbeans replace variable name when using auto complete instead of insert

我怕爱的太早我们不能终老 提交于 2019-12-02 01:39:26
问题 I have a problem when I want to change an existing variable with a new one using auto complete ctrl-space I write or navigate the new name but when selecting it, it gets insert where the cursor is instead of replacing the old variable. In Delphi IDE this was default behavior (i.e replace instead of insert at cursor position). Example: if I want to replace MyVar1 with MyVar2 and place the cursor right after My it becomes MyVar2Var1 回答1: Instead of hitting Enter key, when auto-complete box is

How to setup SDK in IntelliJ IDEA?

橙三吉。 提交于 2019-12-02 01:25:55
问题 I am not finding any way to setup the SDK in IntelliJ IDEA. Not finding any path to setup the SDK in ubuntu 16.04 LTS for IntelliJ IDEA. I am working in this IDE for working on mongodb. But can't proceed because of this problem. 回答1: To find the path where java is installed on ubuntu, you can run the following command from terminal: $ whereis java You may get something like this: java: /usr/bin/java /etc/java /usr/share/java /usr/lib/jvm Which means that the java resides at one of the above

Java 实体类自动生成get set(IDEA)

江枫思渺然 提交于 2019-12-02 01:22:26
此插件可以自动生成实体类的get set 和 toString方法,如果实体类有变动,也无需自己手动调整get set 依赖 <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.6</version> </dependency> Idea 插件(依赖必须和此插件配合使用,否则不生效) 然后在实体类的类上面加上@Data即可生效 来源: CSDN 作者: 听风便是雨. 链接: https://blog.csdn.net/weixin_44374121/article/details/88282870

Library (dylib) not loaded - image not found - Python IDE

强颜欢笑 提交于 2019-12-02 01:13:07
Basically I'm trying to run some Python code from savReaderWriter module in order to create a .sav file ready to open in IBM SPSS. As a macOS user I needed to run these two lines in the terminal first for the module to work: echo 'export DYLD_LIBRARY_PATH=/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/savReaderWriter/spssio/macos' >> ~/.bash_profile echo 'export LC_ALL=en_US.UTF-8' >> ~/.bash_profile Below you can see a piece of code I'm trying to run in Python: import savReaderWriter savFileName = "someFile.sav" records = [['Test1', 1, 1], ['Test2', 2, 1]]