Tagged Questions

2
votes
1answer
37 views

Why do MSTests Assert.AreEqual(1.0, double.NaN, 0.0) pass?

Short question, why do Assert.AreEqual(1.0, double.NaN, 0.0) pass when Assert.AreEqual(1.0, double.NaN) do not? Is it an error in MSTest or am I missing something here? Best rega …
1
vote
7answers
100 views

what type of bug causes a program to slowly use more processor power and all of a sudden go to 100%?

Hi, I was hoping to get some good ideas as to what might be causing a really nasty bug. This is a program which is transmitting data over a socket, and also receives messages bac …
1
vote
5answers
220 views

C#: Why is this code ignored?

Sorry about the weird question title, but I don't really know what to call this. It simply makes no sense to me. Here is the code: public partial class ParameterPanel : FlowLayout …
0
votes
2answers
78 views

What could cause a Labwindows/CVI C program to hate the number 2573?

Using Windows So I'm reading from a binary file a list of unsigned int data values. The file contains a number of datasets listed sequentially. Here's the function to read a si …
2
votes
3answers
187 views

Help me avoid weird automatic scrolling in IE

I'm maintaining a web page and need to fix a very weird behavior under IE. The page has a table that displays a menu for each cell as the mouse moves over. Everything runs fine as …
1
vote
2answers
92 views

Crazy python behaviour

I have a little piece of python code in the server script for my website which looks a little bit like this: console.append([str(x) for x in data]) console.append(str(max(data))) …
1
vote
3answers
1k views

Visual Studio 2008 Project Properties Build Configuration Missing Options

I have a strange problem, and hopefully someone can help me. I have a solution with 13 separate C# projects. I am using Vista x64 to develop on, and I would like to build these pr …
0
votes
0answers
54 views

Why do I get EntryPointNotFoundExceptions in Visual Studio’s form designer?

I did some refactoring of an application framework, and now the form designer behaves in a weird way - after a rebuild, it crashes with a EntryPointNotFoundException until Visual S …
1
vote
12answers
303 views

Why doesn’t this overflow?

Given this code: int x = 20000; int y = 20000; int z = 40000; // Why is it printing WTF? Isn't 40,000 > 32,767? if ((x + y) == z) Console.WriteLine("WTF?"); And knowing an i …
0
votes
1answer
80 views

Is there a problem when I call SqlAdapter.Update and at the same time call SqlDataReader.Read

I have two applications, one updates a single table which has constant number of rows (128 rows) using SqlDataAdapter.Update method , and another application that select from this …
1
vote
3answers
91 views

I can not access Count property of the array but through casting to ICollection !!

int[] arr = new int[5]; Console.WriteLine(arr.Count.ToString());//Compiler Error Console.WriteLine(((ICollection)arr).Count.ToString());//works print 5 …
1
vote
3answers
166 views

Javascript literal loses its variables when called with setTimeout

Hi, I have this piece of code, and it doesn't work as I expect (it's demo code, distilled from a larger program): <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN …
2
votes
3answers
115 views

Can someone help me understand why this is happening?

I just run into the weirdest thing I've ever encounter. Consider this test page: <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title></title> …