Tagged Questions

4
votes
4answers
283 views

Why doesn’t this crash? Aren’t I dividing by zero here?

I'm getting the slope of a line bounded by two points float slopeXY(CGPoint p1, CGPoint p2) { return ((p2.y - p1.y) / (p2.x - p1.x)); } If I give it a zero-sized line, CGPo …
0
votes
1answer
26 views

Visual Studio 2005 context menu launches server explorer: why?

For some reason, a variety of actions in Visual Studio 2005, actions that have nothing to do with SQL Server, are opening the "Connect to SQL Server" dialog. And it takes four (4) …
4
votes
1answer
191 views

Why does C++ define the norm as the euclidean norm squared

This may sound like a bit of a rhetorical question, but I ask it here for two reasons: 1.) It took me a while to figure out what C++ std::norm() was doing differently from Matlab/ …
1
vote
9answers
301 views

Java counter-intuitive code

I remember reading a book named : Java Puzzlers Traps, Pitfalls, and Corner Cases that described odd behavior in Java code. Stuff that look completely innocent but in actuali …
1
vote
4answers
1k views

java swing - layout oddness when using different layout managers

Hi all - bit of oddness seen - if I do the following: import javax.swing.*; public class FunkyButtonLayout { public static void main(String[] args) { JFrame frame = new J …
3
votes
3answers
135 views

Execution plan oddity after re-enabling foreign key constraint

I have a weird problem where after setting nocheck on a foreign constraint and re-enabling it, I am getting a same out-dated execution plan that was used with nocheck on. Why wo …
2
votes
3answers
100 views

Strange behavior: Hash’s keys cancel dynamic method definition

Let's say I want some instance of String behave differently from other, "normal" instances - for example cancel the effect of the "upcase" method. I do the following: class String …
0
votes
3answers
845 views

AS3 Project - Mouse Move Listener Reacting Outside of Application

I'm getting an unusual behavior that I can't seem to get to the bottom of. When I run this, if I move in the swf area it traces normally on mouse move. To be expected. But it's tr …
0
votes
1answer
260 views

C# web services - why does http://localhost//testservice (two slashes) work?

Hi, I am writing a test web service, and noticed a strange corner case. If you include two slashes after the port, the method will be called anyway for localhost, localhost:80, 1 …
1
vote
2answers
340 views

C# UserControl.VerticalScroll.Value not being set

I've got a chunk of C# code that is supposed to set VerticalScroll.Value within a class that inherits from UserControl. It gets called when any child object of the class changes s …
2
votes
5answers
592 views

C++ stdext hashmap efficiency - reorganising (?)

Hello, I have faced a quite strange thing related to stdext hashmap. I have to work with a lot of objects and it is a priority to access the elements in a fast way. My program re …
0
votes
3answers
83 views

ASP.NET Unexpected and Different Behavior in Different Environments

I have an ASP.NET site (VB.NET) that I'm trying to clean up. When it was originally created it was written with no error handling, and I'm trying to add it in to improve the User E …
0
votes
4answers
779 views

Strange behaviour opening pop-up window in Internet Explorer

I have the following JavaScript code to pop up a window in Internet Explorer. The code is executed from a page within a Microsoft CRM modal dialog box. (RequestID is a string that …