ide

Event toaster for visual studio 2008

a 夏天 提交于 2019-12-11 02:17:07
问题 I often use visual studio 2005 side-by-side with visual studio 2008. Do you remember the visual studio 2005 power-toy event toaster? You could configure it to pop a balloon in the system tray when a build was complete. Is there a FREE plug-in for visual studio 2008 that does the same thing ? I really miss the event toaster. I used to zone out during long builds and the friendly POP sound it made when the build was complete would wake me up. 回答1: Growl for windows can show popups when builds

Why can't IntelliJ work with single files?

删除回忆录丶 提交于 2019-12-11 02:08:19
问题 I get that as an IDE IntelliJ focuses on projects. But is it possible to open/create single files without starting a new project all over again? 回答1: No, it not possible. IDEA it's not easy text editor like Sublime Text or Notepad++. But you can create project with simple structure and open(drag and drop) or create there any files. 来源: https://stackoverflow.com/questions/23022692/why-cant-intellij-work-with-single-files

Bug caused by non printable character embedded by Visual Studio

喜欢而已 提交于 2019-12-11 01:33:29
问题 I have some cross platform code that I regularly share between Visual Studio and Xcode (and Vim). At some point, I modified a string in this code, using Visual Studio. That string somehow ended up with an errant ' ^H ' control character (ASCII 0x08) embedded in it. The trouble is, this control character is non-printable. It wasn't visible in Visual Studio, nor was it visible in Xcode. Viewing the source in Vim, I could clearly see the problem. Vim helpfully displays the control character, and

Selenium IDE - How to switch back to main content from an iframe

荒凉一梦 提交于 2019-12-11 01:31:34
问题 Ok. I have selected my iframe and done my operation, now i want to switch back to main content and select a button. What is the Selenium IDE command to switch out of the iframe and back to the entire page content 来源: https://stackoverflow.com/questions/17564095/selenium-ide-how-to-switch-back-to-main-content-from-an-iframe

XAML design view broken in visual studio 2008 for silverlight 3?

烂漫一生 提交于 2019-12-11 00:45:55
问题 I recently installed silverlight 3 tools to my VS 2008 SP1 environment, now when I open xaml files the designer fails to load saying (if I drag the panel up): Load Cancelled Loading of the visual designer was cancelled. Resume loading the designer If I click on the resume loading link the designer will load, however the XAML and Design tabs do not appear at the split window junction. I can see the swap panes button, but it does not function if I click it. VS shows this error: Failed to load

How to Specify Project-Specific Package Settings?

淺唱寂寞╮ 提交于 2019-12-11 00:35:21
问题 How can I specify project-specific package settings in the Delphi 2010 IDE? Changing the packages in the project options does change the packages for all projects in the project group. This is annoying because I build my application with a package that needs to be disabled in order to compile the BPLs in the project group. 回答1: As said in my comment to vcldeveloper's answer (which has somehow vanished now) I can confirm that behaviour. Although I don't know about the intrinsics, I can try to

Netbeans Version Control File Color Codes?

隐身守侯 提交于 2019-12-11 00:31:51
问题 I'm trying to find a legend that can help explain the different colors NetBeans uses to describe the state of a file. Some of my file colors are: Grey Blue Green Any others I have yet to discover If it helps, I'm using Netbeans 6.7 with CVS. What are these colors? 回答1: Green means new. Blue means modified. Grey means ignored and/or deleted. (Documentation contradicts the tooltip hint!) If you go into the View menu, you can turn on Show Versioning Labels . That will put text next to each file

Eclipse CDT automatically replace “.” with “->”

眉间皱痕 提交于 2019-12-10 23:44:11
问题 The Qt Creator have a neat feature I really like. When I'm typing obj.method , it would automatically replace the period ( . ) with an arrow ( -> ), if obj is a pointer. Makes sense actually. You never want to type pointer.something , it wouldn't be legal. Is there a way to achieve a similar function with Eclipse CDT? 来源: https://stackoverflow.com/questions/3630711/eclipse-cdt-automatically-replace-with

Code samples to test IDE color schemes

断了今生、忘了曾经 提交于 2019-12-10 23:13:51
问题 I've just recently discovered how many different options we have to configure the colors of Visual Studio 2010. Jeff Atwood posted on his blog, some years ago, "Is your IDE hot or not", where he shows a code sample to test the IDE colors. However, this sample is not very complete, in the sense that Visual Studio provides more customization options than we can test with that code. So, could you propose a code sample to be used to test IDE color schemes , in the most comprehensive possible way?

ISCC passing a parameter in the Compiler IDE

a 夏天 提交于 2019-12-10 22:56:42
问题 I want to know if it's possible to pass ISCC option if I compile my script within the Inno Setup Compiler IDE (optimal in Inno Script Studio). I found this question which says I should do something like #ifndef myDefine #define myDefine "value" #endif I've already tried that because of the answer of my other question. What I try to achive in the IDE is: ISCC /DPHASE=test "D:\foo\bar.iss" So is there an option in the IDE where I can pass preprocessor parameters? 回答1: No, there's no other way