The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
65 views

Double.MaxValue crashes mixed Native/C# application

We have a problem with an application crashing when it calls a method that uses Double.MaxValue. This is true running in the debugger as well as in the release version, and happens under 32-bit XP as ...
1
vote
0answers
24 views

DataInputStream available() behaviour for reading files bigger than Integer.MAX_VALUE bytes

I have a binary file in custom format than I have written using DataOutputStream. The simplified format of the data in the file is: IntCharIntCharIntChar...IntChar I am using DataInputStream to read ...
0
votes
2answers
136 views

How to find max value of a column in a datatable?

I am trying to find the max value of a column in a datatable. Below is my code var maxVal = dsloadReferralCodes.Tables["dtReferralCodesTable"].AsEnumerable().Max(r => ...
-3
votes
1answer
37 views

Using Linq for max value?

Hi i'm new to linq and i'm trying to find the maximum size an inteeger can hold. Dim Max As Integer = Convert.Int32((From a In mytable Order By a.Item("myValue") Select a.Item("Integer"))).MaxValue ...
0
votes
2answers
69 views

MySQL query record with max value in a specific column

I know that this must be a very basic question, but I've not found an answer. Has the title says, I would like the query the record that holds the max value of a specific column. I use the following ...
5
votes
2answers
132 views

Why (“abc”+char.MaxValue).CompareTo(“abc”)==0?

I have a sorted array of strings. Given a string that identifies a prefix, I perform two binary searches to find the first and last positions in the array that contain words that start with that ...
1
vote
2answers
641 views

grails Find max value in table column

I am creating a version control domain class in grails: class VersionControl { Date dateCreated Long versionNumber Long getLatestVersionNumber() { //return largest versionNumber ...
8
votes
6answers
804 views

Get the maximum value of a variable in C

Is there a function in C that returns the maximum value of a variable like this (I will name the function "maxvalue" in example below)? int a; printf("%d", maxvalue(a)); // 32767 unsigned int b; ...
0
votes
2answers
73 views

mysql join two table with MAX(value)

I have this mysql code witch is working very well SELECT uid , MAX(value) AS bidvalue FROM auction WHERE pid = '$pid' and max_bid=0 GROUP BY uid ORDER BY bidvalue DESC LIMIT 1 How can I join ...
0
votes
0answers
132 views

Set DatePicker's MaxValue in windows phone

How to set the maxValue of a DatePicker to today's date?? So when scrolling to select the day it won't allow any date from the future. I have been trying so sort of things but it doesn't work. Any ...
0
votes
0answers
115 views

Finding Largest Binary Subtree

For that question, I've tried recursive solution which tends to be true. However somehow it works for some trees and cant figure out why. Assume you have a isLeaf method. Here is roughly what I did. ...
0
votes
2answers
205 views

MySQL left join with one ordered result from another table

I've got two tables: products and news - news are about products so news table has row pid (for product id), news have different dates so it can be ordered by date. And i need a query to show some ...
0
votes
1answer
363 views

Php song upload

i'm trying to upload a song with an html form and a php code. I've found on the net loads of scripts but noone seems to do the work. I mean, it actually uploads little images but when it comes to ...
8
votes
3answers
600 views

What's the difference between Float.POSITIVE_INFINITY and Float.MAX_VALUE?

What's the difference between Float.POSITIVE_INFINITY and Float.MAX_VALUE? Which is greater? Are they the same? I came accross them looking for a value that would be greater than every other float or ...
1
vote
2answers
284 views

auto identity field max value exceed status

I am designin a new table which has an identity column with int type.The table supposed to have inserts most than 500.000 daily .So how can i avoid the problem of identity field exceeding max ...
0
votes
3answers
813 views

Increment with integer

I want to Use Progressbar1.Increment but I wanna use Integer but the problem is that the maximum value of integer is over 100 so i want to set the Integer.Maxvalue to 5 but it got an error when I ...
1
vote
2answers
246 views

how to get all the indexes of maximum repeated values in an array in perl

Hi I am new to Perl an in a learning process. I am having an array @array = ( 10, 40, 59, 40, 90, 100, 30, 40, 100, 20, ); I want to find the maximum number in the array and also want to know the ...
2
votes
4answers
106 views

C# value overflow limiting

I need to limit the value on overflow. I implemented this as follows: public static sbyte LimitValueToSByte(this int val) { if (val > sbyte.MaxValue) return sbyte.MaxValue; ...
0
votes
1answer
95 views

I need a query to count max cuncurrent connection for each user

I have this table log: ID - MACDevice - USERNAME - startDateTime - stopDateTime - Duration I need to fill the following table with statistic data: MACDevice - MAXConcurrentConnection - ...
0
votes
1answer
72 views

Failed to get MaxValue from data

well, maybe this is a simple question for you, but for a newbie like me it's kinda confusing okey, I try to get a maximum value from an array, here's my code int sample = input.GetLength(0); double ...
0
votes
4answers
1k views

How to check if number fits primitive type in java?

I need do to some input validation but run into a question and I do not seem to find an answer (even with Google). The problem is simple: I have 2 positive integers on the input, and I need to check ...
14
votes
2answers
5k views

What is the maximum value of NSInteger?

I need to store the maximum value of an NSInteger into an NSInteger? What is the correct syntax to do it? Thanks.
1
vote
2answers
1k views

Update on row for each group with max value in other column

I have to update a column in a very, very large table. So performance is a big issue. The question is the similar to this one, but only for Sybase Adaptive Server Enterprise (ASE 12.5.4) plus I need ...
0
votes
2answers
159 views

How can I select values from different rows depending on the most recent entry date, all for the same employee ID?

Basically I have a table which is used to hold employee work wear details. It is formed of the columns: EmployeeID, CostCentre, AssociateLevel, IssueDate, TrouserSize, TrouserLength, TopSize & ...
0
votes
9answers
8k views

Integer counter - What to do when Max-Value?

How do you solve the max value problem when using an integer counter, that looks like counter = counter + 1; When this reaches the max value, how do you know this happened? Do you add another ...
4
votes
2answers
2k views

How to represent system constants in XAML (like double.MaxValue)

What is the xaml equivalent of MyProperty = double.MaxValue? I'm afraid I'll need to use something like MyProperty="{x:Static sys:Int32.MaxValue}", but not sure, and can't find the equivalent for ...
2
votes
3answers
2k views

SQL constraint minvalue / maxvalue?

Is there a way to set a SQL constraint for a numeric field that min value should be 1234 and max value should be 4523?
0
votes
2answers
513 views

uint.MaxValue in .NET

uint x = uint.MaxValue - 100; The above line causes visual studio to report "The operation overflows at compile time in checked mode" I'm obviously missing something. Any ideas what?
6
votes
5answers
2k views

How do you do maths (or math) with numbers bigger than MaxValue in C#? [duplicate]

Possible Duplicate: Big integers in C# I want to be able to process arbitrarily large numbers in C#. I can live with just integers. Are there established algorithms for this kind of ...