4
votes
9answers
911 views
How can I stop my Visual Studio from launching IE8 TWICE when I click “Start Without Debugging” (Ctrl-F5)?
I use Visual Studio 2008 primarily for web development, and there's one annoying behaviour which seems to have occurred ever since I upgraded to IE8 on my work PC:
When I set a start page for a web …
3
votes
1answer
95 views
R: an NA in subsetting a data.frame does something stupid
I do find R to be a very frustrating language. It seems to excel on data-dependent bugs. Consider the following code. When you don't explicitly test for NA in your condition, that code will fail at …
0
votes
1answer
28 views
Events tab randomly appears and disappears in VS 2008
I know it's a minor annoyance.. but it's still an annoyance and it baffles me.. About 3 months ago I was using VS 2008 and when I went to the "Properties" tab there was the little lightning bolt for …
6
votes
22answers
556 views
Database vs Flat Text File: What are some technical reasons for choosing one over another when performance isn’t an issue?
Hello All,
I am having a problem in one of the teams that I am working in. One of the guys is a bit SQL happy in my opinion and wants to store the log information generated by a small python FTP …
0
votes
5answers
150 views
Any way to avoid using anonymous functions in jQuery?
If I have a chunk of code like this:
.hover(
function () {
hoverState($("#navbar a").index(this),1);
},
function () {
hoverState($("#navbar a").index(this),-1);
});
Is …
2
votes
3answers
132 views
How to get Visual Studio to remember javascript settings
Visual Studio 2008 is doing something that really frustrates me. I open a javascript file and start editing my code and it places the opening brace on the same line rather than on a new line. So I go …
0
votes
0answers
26 views
proliferation of rocket tray icons
Each time I run a test using TestDriven, it creates another "rocket" icon on my system tray. I have to manually do right-click Quit to get rid of them. How can I avoid this?
2
votes
3answers
317 views
Is there a way to prevent the VB6 compiler from shuffling the contents of files?
For reasons unknown, the VB6 compiler often likes to reorder the contents of .vbp files and the control descriptor block at the top of .frm files (The code that describes the properties of controls on …
1
vote
1answer
616 views
What causes the System.Web.HttpException with error code 0x80070057 on Page.Flush while debugging in VS2005?
Here is the complete error message:
An exception of type
'System.Web.HttpException' occurred in
System.Web.dll but was not handled in
user code
Additional information: The remote
host …
3
votes
6answers
2k views
Is it possible to disable IE8 “accelerators” on my website?
I'm a web developer focused on UI.
Many interface features in my web application are based on double-clicking.
In IE, this brings up that new annoying "accelerators" icon which interferes with my …
1
vote
4answers
169 views
screenshot an application in python, regardless of what’s in front of it
So I can use PIL to grab a screenshot of the desktop, and then use pywin32 to get its rectangle and crop out the part I want. However, if there's something in front of the window I want, it'll occlude …
3
votes
8answers
217 views
What simple problem have you seen addressed in an unnecessarily complicated manner?
Today, I was reviewing some code a coworker had written recently. The following statement seemed to jump off the screen at me.
string defaultValue = (1000).ToString();
And this has prompted me to …
1
vote
2answers
176 views
How to prevent Visual Studio from compiling solution after I exit debug mode?
Visual Studio builds the entire solution when I exit debug mode.
This is very annoying as the solution contains 42 projects (ASP.NET MVC, IIS hosted WCF, Silverlight apps and others) and the build …
1
vote
1answer
112 views
Excel 2007 Visual Basic Editor: eats spaces, throws cursor around
I can't resolve this issue, I found a similar question here but:
setting the workbook to Manual calculation (alt-m-x-m or alt-t-o>formulas) didn't work
Setting editor options to disable: Auto syntax …
1
vote
5answers
63 views
Should loading/startup dialogs be locked on top?
Introduction
I have been so annoyed by applications that have a startup dialog which is Always on Top configured.
By start dialog I mean the annoying box that tells you what program you just opened …
