Tagged Questions

5
votes
7answers
139 views

Divide by Zero Display Values

What is the best way (most intuitive to users) or best practice for displaying the results of a divide by 0 error when doing reporting? Within the report, I capture this error, however, when …
1
vote
1answer
23 views

Problem with Sun Java KeyManagerFactory and null passwords

We are having a problem with the KeyManagerFactory in the Sun JRE 1.6. We are using code similar to the following to upload and use a certificate in p12 format: KeyStore keyStore = …
0
votes
1answer
63 views

Xcode crashes with divide by zero

I downloaded urlcache.zip from http://developer.apple.com/iphone/library/samplecode/URLCache/index.html#//apple%5Fref/doc/uid/DTS40008061 I opened the project in xcode and clicked on …
1
vote
1answer
167 views

Intermittent “Division by zero” error in classic ASP pages. HELP!

This is a strange one. A web application which runs fine on Windows Server 2000, experiences intermittent errors on Windows Server 2003 R2. By intermittent, I mean myself and 2 testers can find the …
2
votes
4answers
275 views

How should I tackle ARCTAN (and prevent deviding by zero) without the convenience of ARCTAN2(n,m) being available?

I try to determine the angle from a point (n,m) to (0,0). Without arctan2 being available, I'm running into the problem that m can be 0, which leads to a possible division by zero. What would be an …
1
vote
6answers
329 views

Having a divide by zero problem.

Hes my code and I can't figure out where I'm getting the divide by zero problem. mreviewApp.cpp const int SIZE = 80; const char DELIMIT = '|'; void parseLine(const char line[], string& title, …
0
votes
3answers
827 views

SQL Server Check for IsNull and for Zero

I have the following: set @SomeVariable = @AnotherVariable/isnull(@VariableEqualToZero,1) - 1 If @VariableEqualToZero is null it substitutes the 1. I need it to substitute 1 if …
1
vote
4answers
604 views

Can I force java to throw an error when dividing by zero with floating point numbers?

I wrote a simulator that has some collision detection code and does a good bit of math on each object when it detects collisions. If these two objects are at the exact same location or in some rare …
2
votes
11answers
934 views

Should integer divide by zero halt execution?

I know that modern languages handle integer divide by zero as an error just like the hardware does, but what if we could design a whole new language? Ignoring existing hardware, what should a …
1
vote
6answers
424 views

Divide by zero error in stored procedure

Hi i executed the following stored procedure in .net web application. Then run the application. I got this error " Divide By zero error " Stored procedure: CREATE procedure Details(@Stringtext …
0
votes
6answers
695 views

SQL Server - Strange Divide By Zero

I'm executing the following query: Select guiPolygonID, dbo.fn_Yval(p1X, p1Y, p2X, p2Y, 4.003318) From [vPolygonSegments] Where dbo.fn_Yval(p1X, p1Y, p2X, p2Y, 4.003318) > 0 The important parts …
1
vote
12answers
1k views

Divide by zero error, how do I fix this?

Hi all, C# novice here, when the int 'max' below is 0 I get a divide by zero error, I can see why this happens but how should I handle this when max is 0? position is also an int. private void …