ide

“Object library not registered” when adding Microsoft Rich Textbox Control 6.0 (SP6)

允我心安 提交于 2019-12-02 16:37:42
I try to add Microsoft Rich Textbox Control 6.0 (SP6) control via Project -> Components... in VB6 IDE. The control is present in the list of controls. When I tick it and click OK/Apply, I get Object library not registered error: Environment is Windows 7 SP1 x64 with latest updates, VB6 SP6 + KB957924. richtx32.Ocx is present in C:\Windows\SysWOW64\ . I tried re-registering .ocx by running this in elevated command prompt: cd c:\windows\SysWOW64 regsvr32 /u richtx32.Ocx regsvr32 richtx32.Ocx Registration completes successfully, but doesn't resolve the problem. When I look at what's going on

Why is IntelliJ IDEA hanging on “Indexing”?

百般思念 提交于 2019-12-02 16:33:25
I'm running on Arch Linux, on an i7-5930k 6 core CPU and 64GB of DDR4 RAM, and I'm using IntelliJ IDEA 14. IDEA was working just fine for me several days ago, but one day, suddenly, it began hanging after opening a project, during the "Indexing" stage. I did not update IDEA and nothing changed about my projects. The IDE's UI hangs after it opens the project, with just a tiny little sliver of the progress bar for "Indexing" complete. Every 5-10 minutes or so it unfreezes and the progress bar crawls forward a little bit, before the IDE freezes again for another few minutes. This happens

Python 3 IDE for teaching [closed]

本小妞迷上赌 提交于 2019-12-02 16:18:06
With Python 3 maturing and slowly gaining adoption, we're taking the plunge and adopting it in our introductory programming classes for kids aged 12-18. Is there a free (preferably open source) IDE you'd recommend that supports Python 3, preferably meeting the following criteria in order of necessity: Cross platform (Windows and Linux) Standard features: syntax highlighting, auto-indent, etc. Run button, rather than console where you have to type "python foo.py". Context-sensitive help (e.g. when they hover over math.floor() it should give help for the function). Embedded Python shell. Built

Emacs as an IDE for large C++ projects

守給你的承諾、 提交于 2019-12-02 15:55:28
I am a Emacs newbie. I have to trying to search on how to use Emacs for use with large C++ projects particularly to index code and auto-complete function names and behave Eclipse-like. I had been using Vim for some time where I used ctags to index code in my project and Vim used to try auto-completing my code using a drop down menu of options. I am trying to achieve the same with Emacs now. But, during my search, results pointed to CEDET and auto-complete and other 3rd party plugins. I tried to use ctags with ctags -e -R . and etags, but with no success. Am I missing a default way of Emacs to

2.3.3 IDE磁盘【译】

╄→尐↘猪︶ㄣ 提交于 2019-12-02 15:49:56
现代个人计算机器磁盘是从IBM PC XT进化而来,XT的磁盘控制器位于插件卡中,控制着10MB的希捷磁盘。希捷磁盘由4个磁头,306个柱面,每个磁道有17个扇区。控制器能够操作两个驱动。操作系统读写磁盘的方式是:把参数放进CPU寄存器,然后调用PC内建只读内存中的BIOS(基本输入输出系统)。BIOS发布机器指令来加载硬盘控制器寄存器。 从控制器位于分开的板子上,到控制器和驱动紧密集成,技术的飞速发展始于20世纪70年代中期的IDE驱动(电子集成驱动器)。然而,BIOS的调用规范由于向后兼容的原因并未发生变化。调用规范通过给磁头,柱面和扇区编号来给扇区编址,磁头和柱面从0开始编号,扇区从1开始。这种选择可能是来自早期BIOS程序员犯的错误,他在8088汇编器中编写他的杰作。磁头编号有4位,扇区编号有6位,柱面有10位,最大的驱动可能有16个磁头,63个扇区和1024个柱面,合计1032192个扇区。这样一个最大的驱动能存储504MB,在当时看起来似乎是无限的,在今天肯定不是。(你会抱怨今天新买的计算机不能驾驭超过1000TB的驱动吗?) 很不幸的是,不久,504MB以下的驱动诞生了,但是它的结构是错的(比如,4个磁头,32个扇区,2000个柱面共计256000个扇区)。由于一成不变的调用规范,操作系统无法给扇区编址。就这样,磁盘控制器开始撒谎了,假装驱动结构处于BIOS的限制下

Android Studio 0.2.2 + ActionBarSherlock settings: Could not find class 'android.support.v4.app.FragmentActivity'

放肆的年华 提交于 2019-12-02 15:48:41
问题 similar problem mention here. I set android-support-v4 to compiler also but still I am getting problem related to reference library. How can solve this issue? 回答1: As you requested my settings to be shared, I here post my project settings window. Hope that you can help. 1. ActionBarSherlock project. Note that only android-support-v4 is checked to be exported. 2. My personal project settings windows. Nothing special but only ActionBarSherlock project is referenced. 来源: https://stackoverflow

What is the .idea folder?

隐身守侯 提交于 2019-12-02 15:44:54
When I'm trying to create a project in Jetbrains Webstorm a folder gets created called .idea . Is it okay if I delete this? Will it affect my project? karthikr When you use the Intellij IDE , all the project specific settings for project are stored under the .idea folder Project settings are stored with each specific project as a set of xml files under the .idea folder. If you specify the default project settings, these settings will be automatically used for each newly created project. Check this documentation for the IDE settings and here is their recommendation on Source Control and an

Clojure IDE on Windows? [closed]

*爱你&永不变心* 提交于 2019-12-02 15:27:42
How do you develop in Clojure on Windows systems? Runevault Personally I use emacs because no other IDE feels right with sexpression languages to me. Swank/slime/emacs/clojure is just such a powerful repl setup nothing else feels right to me. If you want it set up easily (assuming you don't already have emacs set up) check out clojurebox https://github.com/devinus/clojure-box Preconfigged to just work on windows after running an installer. On the site, the first thing you would read when getting started lists all your current options. There is a netbeans add-in , emacs mode and vim syntax

什么是IDE(集成开发环境)?

*爱你&永不变心* 提交于 2019-12-02 15:26:32
实际开发中,除了编译器是必须的工具,我们往往还需要很多其他辅助软件,例如: 编辑器:用来编写代码,并且给代码着色,以方便阅读; 代码提示器:输入部分代码,即可提示全部代码,加速代码的编写过程; 调试器:观察程序的每一个运行步骤,发现程序的逻辑错误; 项目管理工具:对程序涉及到的所有资源进行管理,包括源文件、图片、视频、第三方库等; 漂亮的界面:各种按钮、面板、菜单、窗口等控件整齐排布,操作更方便。 这些工具通常被打包在一起,统一发布和安装,例如 Visual Studio、Dev C++ 、Xcode、Visual C++ 6.0、C-Free、Code::Blocks 等,它们统称为集成开发环境(IDE,Integrated Development Environment)。 集成开发环境就是一系列开发工具的组合套装。这就好比台式机,一个台式机的核心部件是主机,有了主机就能独立工作了,但是我们在购买台式机时,往往还要附带上显示器、键盘、鼠标、U盘、摄像头等外围设备,因为只有主机太不方便了,必须有外设才能玩的爽。 集成开发环境也是这个道理,只有编译器不方便,所以还要增加其他的辅助工具。在实际开发中,我一般也是使用集成开发环境,而不是单独地使用编译器。 通俗的称呼 有时候为了称呼方便,或者初学者没有严格区分概念,也会将 C语言 集成开发环境称作“ C语言编译器 ”或者“

Debugging IDE's port connection to XDebug: “Waiting to Connect”

会有一股神秘感。 提交于 2019-12-02 15:11:45
Preamble Like many, I've spent more hours debugging my IDE’s connection to XDebug than I have using XDebug to debug my programs. I’ve gotten it to work repeatedly , but every once and a while I get the common “Waiting to connect” problem . I haven’t been able to localize what causes XDebug to work or fail. I’ve been using ubuntu for two years; I’m neither a noob nor an strace guru. What am I doing wrong? How can I better debug my IDE’s connection to XDebug? Setup Ubuntu 10.10 Netbeans 6.9.1 PHP 5.3.3-1ubuntu9 with Suhosin-Patch Xdebug v2.1.0 with debugclient built Sep 20 2010 from source using