active questions tagged integer - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T04:57:55Zhttp://stackoverflow.com/feeds/tag/integerhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1791962/axapta-force-container-integer-to-be-stored-as-a-string0Axapta: force container integer to be stored as a stringBrad2009-11-24T18:23:11Z2009-11-27T18:18:38Z
<p>Is there a way to force a container to store all values as strings? I am using str2con in order to split text strings into containers.
Any time a field with numbers only comes up, it is stored as an int, which isn't a huge problem. What IS a big problem is when the string of numbers exceeds the integer size and the number becomes something different.</p>
<p>Consider the following strings:</p>
<pre><code>"Text1,Text2" Container becomes: str "Text1", str "Text2"
"1111111111,Text" Container becomes: int 1111111111, str "Text"
"8888888888,Text" Container becomes: int -961633963, str "Text" (THIS IS BAD)
</code></pre>
<p>Any suggestions for how to get around this?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1807260/displaying-the-size-of-a-file-in-clistctrl0Displaying the size of a file in CListCtrlunknown (google)2009-11-27T07:33:48Z2009-11-27T07:41:24Z
<p>I am working in Windows MFC application..In my design am displaying the file details (type,name,size) in a <code>CListCtrl</code> control. I found those file details using <code>FileStatus</code> but when I try to display, I am not able to display the file size since its an integer. I tried <code>CListCtrl::SetItemText</code> and I also tried to type cast but its not working.</p>
<pre><code>int nIndex = m_ListCtrl.InsertItem(0, filename);
m_myList.SetItemText(nIndex, 0, fileSize);
</code></pre>
<p>m_myList is the CListCtrl variable. Can any one help me please?</p>
http://stackoverflow.com/questions/1806265/how-to-display-integers-in-messagebox-in-visual-c0How to display integers in messagebox in Visual C#?Phenom2009-11-27T00:30:18Z2009-11-27T00:31:48Z
<p>I am trying to use a messagebox to debug a Visual C# program. When I click a button I want a simple messagebox to popup and display the values of several integer variables. This is what I have</p>
<pre><code>System.Windows.Forms.MessageBox.Show(myGame.P2.Money);
</code></pre>
<p>However the variable Money is an integer, and so I get this error:</p>
<p>Argument '1': cannot convert from 'int' to 'string' </p>
<p>How do I get this to work?</p>
http://stackoverflow.com/questions/1795762/iphone-dev-makes-pointer-from-integer-without-a-cast0[iphone DEV] makes pointer from integer without a castPixman2009-11-25T09:40:11Z2009-11-25T09:57:39Z
<p>Hello, i have a simply warning in my iphone dev code.</p>
<pre><code>NSUInteger *startIndex = 20;
</code></pre>
<p>This code work, but i have a warning :</p>
<p>warning: passing argument 1 of 'setStartIndex:' makes pointer from integer without a cast</p>
<p>Thanks for your help.</p>
http://stackoverflow.com/questions/1638229/python-class-with-integer-emulation1Python Class with integer emulation Günther Jehle2009-10-28T16:02:57Z2009-11-24T18:44:15Z
<p>Given is the following example:</p>
<pre><code>class Foo(object):
def __init__(self, value=0):
self.value=value
def __int__(self):
return self.value
</code></pre>
<p>I want to have a class <em>Foo</em>, which acts as an integer (or float). So I want to do the followng things:</p>
<pre><code>f=Foo(3)
print int(f)+5 # is working
print f+5 # TypeError: unsupported operand type(s) for +: 'Foo' and 'int'
</code></pre>
<p>The first statement <code>print int(f)+5</code> is working, cause there are two integers. The second one is failing, because I have to implement <code>__add__</code> to do this operation with my class.</p>
<p>So to implement the integer behaviour, I have to implement all the integer emulating methods. How could I get around this. I tried to inherit from <code>int</code>, but this attempt was not successful.</p>
<p><strong>Update</strong></p>
<p>Inheriting from <code>int</code> fails, if you want to use a <code>__init__</code>:</p>
<pre><code>class Foo(int):
def __init__(self, some_argument=None, value=0):
self.value=value
# do some stuff
def __int__(self):
return int(self.value)
</code></pre>
<p>If you then call:</p>
<pre><code>f=Foo(some_argument=3)
</code></pre>
<p>you get:</p>
<pre><code>TypeError: 'some_argument' is an invalid keyword argument for this function
</code></pre>
<p>Tested with Python 2.5 and 2.6</p>
http://stackoverflow.com/questions/109023/best-algorithm-to-count-the-number-of-set-bits-in-a-32-bit-integer14Best algorithm to count the number of set bits in a 32-bit integer?Matt Howells2008-09-20T19:04:38Z2009-11-24T10:21:09Z
<p>8 bits representing the number 7 look like this:</p>
<pre><code>00000111
</code></pre>
<p>Three bits are set. What is the best algorithm to determine the number of set bits in a 32-bit integer?</p>
http://stackoverflow.com/questions/1788227/objective-c-comparing-integers-not-working-as-expected2Objective-C - Comparing integers not working as expectedMatt.M2009-11-24T06:29:25Z2009-11-24T06:35:28Z
<p>Hi everyone. So my problem is this:</p>
<p>I am receiving a JSON string from across the network. When decoded (using SBJSON libraries), it becomes an NSDictionary that SHOULD contain a number of some sort for the key 'userid'. I say 'should' because when I compare the value to an int, or an NSINTEGER, or NSNumber, it never evaluates correctly.</p>
<p>Here is the comparison in code:</p>
<pre><code>NSDictionary *userDictionary = [userInfo objectAtIndex:indexPath.row];
if ([userDictionary objectForKey:@"userid"] == -1) {
//Do stuff
}
</code></pre>
<p>The value inside the dictionary I am testing with is -1. When I print it out to console using NSLog it even shows it is -1. Yet when I compare it to -1 in the 'if' statement, it evaluates to false when it should be true. I've even tried comparing to [NSNumber numberWithInt: -1], and it still evaluates to false.</p>
<p>What am I doing wrong? Thanks in advance for your help!</p>
http://stackoverflow.com/questions/1779463/noreversematch-in-django0NoReverseMatch in djangopedromagnus2009-11-22T18:09:53Z2009-11-23T02:23:35Z
<p>Hi. After debugging for a while I found what the error was, but I don't know how to fix it.</p>
<ul>
<li>I have an urlConf whit the name '<code>ver_caja</code>' who receives as argument the id of a caja object, and then call the generic <code>object_detail</code>.</li>
<li>The queryset is correct: get all the caja objects correctly.</li>
<li>In the template I have the call:
<code>{% ver_caja caja.id %}</code></li>
<li>The object <code>caja</code> is correctly received by the template.</li>
<li>I'm using MySQL.</li>
</ul>
<p>The issue is that <code>caja.id</code> has value <strong>"1L" instead of "1"</strong>.</p>
<p>This <code>1L</code> rises the error because the urlconf (<code>ver_caja</code>) waits for an integer not a alphanumeric '<code><int>L</code>'.</p>
<p>All the info I got in django docs site is this (as an example in a tutorial), and it doesn't help:</p>
<pre><code>...
>>> p = Poll(question="What's up?", pub_date=datetime.datetime.now())
# Save the object into the database. You have to call save() explicitly.
>>> p.save()
# Now it has an ID. Note that this might say "1L" instead of "1", depending
# on which database you're using. That's no biggie; it just means your
# database backend prefers to return integers as Python long integer
# objects.
>>> p.id
...
</code></pre>
<p>So, how could I fix this to receive <code>caja.id=1</code> instead of <code>caja.id=1L</code>?</p>
<p>Thanks in advance.</p>
<p>Pedro</p>
<p><strong>EDIT:</strong> Here you have all the files.</p>
<p>template error:</p>
<blockquote>
<p>Caught an exception while rendering:
Reverse for 'ver_caja_chica' with
arguments '(1L,)' and keyword
arguments '{}' not found.</p>
</blockquote>
<p>caja/models.py</p>
<pre><code>class Caja(models.Model):
slug = models.SlugField(blank=True)
nombre = models.CharField(max_length=20)
saldo = models.DecimalField(max_digits=10, decimal_places=2)
detalle = models.TextField(blank=True, null=True)
# apertura
fechahora_apert = models.DateTimeField(default=datetime.datetime.now, auto_now_add=True)
usuario_apert = models.ForeignKey(Usuario, related_name=u'caja_abierta_por', help_text=u'Usuario que realizó la apertura de la caja.')
# cierre
fechahora_cie = models.DateTimeField(blank=True, null=True)
usuario_cie = models.ForeignKey(Usuario, null=True, blank=True, related_name=u'caja_cerrada_por', help_text=u'Usuario que realizó el cierre de la caja.')
def __unicode__(self):
return u'%s, $%s' % (self.nombre, self.saldo)
class Meta:
ordering = ['fechahora_apert']
class CajaChica(Caja):
dia_caja = models.DateField(default=datetime.date.today, help_text=u'Día al que corresponde esta caja.')
cerrada = models.BooleanField(default=False, help_text=u'Si la caja está cerrada no se puede editar.')
</code></pre>
<p>caja/urls.py</p>
<pre><code>cajas_chicas = {
'queryset': CajaChica.objects.all(),
}
urlpatterns = patterns('',
url(r'^$', 'django.views.generic.list_detail.object_list', dict(cajas_chicas, paginate_by=30), name="lista_cajas_chicas"),
url(r'^(?P<object_id>\d+)/$', 'django.views.generic.list_detail.object_detail', dict(cajas_chicas, ), name="ver_caja_chica"),
)
</code></pre>
<p>cajachica_list.html</p>
<pre><code>...
<table>
{% for obj in object_list %}
<tr class="{% cycle 'row1' 'row2' %}">
<td>{{ obj.nombre|capfirst }}</td>
<td>{{ obj.fechahora_apert|timesince }}</td>
<td>{{ obj.usuario_apert }}</td>
<td>{{ obj.saldo }}</td>
<td><a href="{% url ver_caja_chica obj.pk %}">Ver / Editar</a></td>
</tr>
{% endfor %}
</table>
...
</code></pre>
<p><strong>EDIT-2</strong>
With a wrong urlconf (at purpose), these are the urls for this app: </p>
<pre><code>...
4. ^caja/$ ^$
5. ^caja/$ ^(?P<object_id>\d+)/$
...
</code></pre>
<p>Maybe the final url is been constructed wrong by django. </p>
<p>These urls are inside caja/urls.py and are included by urls.py from the root directory of the project. </p>
<p>Some clue?</p>
http://stackoverflow.com/questions/678998/cpan-modules-for-computing-integer-hash-keys-based-on-short-strings0CPAN modules for computing integer hash keys based on short stringsGit-noob2009-03-24T19:55:18Z2009-11-21T16:44:06Z
<p>I'm looking for a CPAN module that will take a short string:</p>
<pre><code>my $hash_value = hash_this('short string not too long');
</code></pre>
<p>And hash it into an integer key:</p>
<pre><code>say $hash_value;
12345671234 # an integer key
</code></pre>
http://stackoverflow.com/questions/1750442/performance-of-32-bit-integers-in-a-64-bit-environment-c5Performance of 32-bit integers in a 64-bit environment (C++)Darryl2009-11-17T17:27:56Z2009-11-17T17:42:26Z
<p>We've started compiling both 32- and 64-bit versions of some of our applications. One of the guys on my project is encouraging us to switch all of our 32-bit integers to their 64-bit equivalents, even if the values are guaranteed to fit in a 32-bit space. For example, I've got a value that is guaranteed to never exceed 10,000 which I'm storing in an unsigned int. His recommendation is to switch this to a size_t so that it expands to 64 bits in a 64-bit environment, even though we'll never need the extra space. He says that using 64-bit variables will speed up the application regardless of the values stored in each variable. Is he right? It's turning out to be a lot of work, and I'm not anxious to put in the effort if it doesn't actually make a difference.</p>
<p>We're using Microsoft Visual C++ 2008. I'm kinda hoping for a more general, platform-independent answer though.</p>
<p>So what do you think? Are we right to spend time changing our data types for performance reasons rather than range reasons?</p>
http://stackoverflow.com/questions/1737676/sending-an-int-over-tcp-c-programming0Sending an int over TCP (C-programming)Eirik Lillebo2009-11-15T14:41:29Z2009-11-15T16:51:15Z
<p>Hi!</p>
<p>I have a server and a client program (both running on the same machine). The client is able to send a struct to the server with members such as "ID", "size" etc. Then I would like the server to send the ID-member (just an integer) back to the client as an ACK for validation, but I just can't figure this out despite being able to send the struct without problems..</p>
<p>Here is the code from server.c:</p>
<pre><code>/* having just recieved the struct */
int ACK_ID = struct_buffer->message_ID;
result = send(CLIENT_socket, &ACK_ID, sizeof(int), 0);
if (result == -1) {
close(SERVER_socket);
printf("\n\t[ERROR] Failed to send ACK.\n");
exit(EXIT_FAILURE);
}
</code></pre>
<p>Here is the code from client.c:</p>
<pre><code>// Recieve ACK from server
int ACK_ID;
com_result = read(CLIENT_socket, &ACK_ID, sizeof(int), 0);
if ((com_result == -1) || (ACK_ID != metablocks[index].message_ID)) {
printf("\n\t[ERROR] Failed to send metadata. ACK: %i\n", ACK_ID);
}
</code></pre>
<p>When I try to run this I get the following output from client.c:</p>
<blockquote>
<p>[ERROR] Failed to send metadata. ACK: 14</p>
</blockquote>
<p>And of course the server tells me it failed to send ACK. The value of the ID integer I'm trying to send should be 1, but it is recieved as 14. What am I doing wrong here?</p>
<p><strong>Update</strong><br>
So I just tried what Mr. Shawley suggested, and got this error message:</p>
<blockquote>
<p>Partial read: Undefined error: 0</p>
</blockquote>
<p>First I tried exactly what he wrote, but then I noticed that the code is comparing <code>com_result</code> with <code>sizeof(int)</code>. So I assumed that was a typo and tried replacing <code>com_result</code> with the <code>ACK_ID</code> variable in the comparison. Same result.</p>
<p><strong>Update 2</strong><br>
Just added a perror() on the server when it fails, and got the following error message:</p>
<blockquote>
<p>Bad file descriptor</p>
</blockquote>
<p>I am using the same socket for this operation as the one I used when receiving the struct. Here is an expanded code sample from server.c:</p>
<pre><code>// Recieve connection
CLIENT_socket = accept(SERVER_socket, (struct sockaddr *)&CLIENT_address, &CLIENT_address_length);
if (CLIENT_socket == -1) {
close(SERVER_socket);
printf("\n\t[ERROR] Failed to accept client connection.\n");
exit(EXIT_FAILURE);
}
printf("\n\tClient connected!\n");
int data_size;
// Read meta data from connection
data_size = sizeof(struct msg_meta);
result = read(CLIENT_socket, &meta_buffer_char, data_size, 0);
meta_buffer = (struct msg_meta *) meta_buffer_char;
if (result == -1) {
close(SERVER_socket);
printf("\n\t[ERROR] Failed to read from connection.\n");
perror("\n\tRead");
exit(EXIT_FAILURE);
} else if (result > 0) {
printf("\n\tMessage recieved.\n");
printf("\n");
}
// Send ACK back to client
int ACK_ID = meta_buffer->message_ID;
result = send(CLIENT_socket, &ACK_ID, sizeof(int), 0);
if (result == -1) {
printf("\n\t[ERROR] Failed to send ACK.");
perror("\n\tSend");
printf("\n");
close(SERVER_socket);
exit(EXIT_FAILURE);
}
// Close sockets
close(SERVER_socket);
close(CLIENT_socket);
</code></pre>
http://stackoverflow.com/questions/763137/computing-ab-mod-c-quickly-for-c2n-15Computing (a*b) mod c quickly for c=2^N +-1 Arno Setagaya2009-04-18T08:29:45Z2009-11-15T01:49:28Z
<p>In 32 bit integer math, basic math operations of add and multiply are computed implicitly mod 2^32, meaning your results will be the lowest order bits of the add or multiply.</p>
<p>If you want to compute the result with a different modulus, you certainly could use any number of BigInt classes in different languages. And for values a,b,c < 2^32 you could compute the intermediate values in 64 bit long ints and use built in % operators to reduce to the right answe</p>
<p>But I've been told that there are special tricks for efficiently computing a*b mod C when C is of the form (2^N)-1 or (2^N)+1, that don't use 64 bit math or a BigInt library and are quite efficient, more so than an arbitrary modulus evaluation, and also properly compute cases which would normally overflow a 32 bit int if you were including the intermediate multiplication.</p>
<p>Unfortunately, despite hearing that such special cases have a fast evaluation method, I haven't actually found a description of the method. "Isn't that in Knuth?" "Isn't that somewhere on Wikipedia?" are the mumblings I've heard.</p>
<p>It apparently is a common technique in random number generators which are doing multiplies of a*b mod 2147483647, since 2147483647 is a prime number equal to 2^31 -1. </p>
<p>So I'll ask the experts. What's this clever special case multiply-with-mod method that I can't find any discussion of?</p>
http://stackoverflow.com/questions/1718722/why-does-this-code-in-vba-power-point-work-fine-witout-dim-commands-for-numbers2Why does this code in VBA Power Point work fine witout Dim commands for numbers?brilliant2009-11-11T23:07:15Z2009-11-15T01:20:08Z
<p>From one of VBA tutorials I learned that variables contining numbers should be firstly declared as integers: </p>
<pre><code>Dim mynumber as integer
</code></pre>
<p>But, please, look at this code: </p>
<pre><code>Sub math()
A = 23
B = 2
ABSumTotal = A + B
strMsg = "The answer is " & "$" & ABSumTotal & "."
MsgBox strMsg
strMsg = "The answer is " & "$" & Sqr(ABSumTotal) & "."
MsgBox strMsg
End Sub
</code></pre>
<p>No variables are declared here as integer, but it still works just fine. Why is it so? </p>
http://stackoverflow.com/questions/1733460/mysql-integer-unsigned-arithmetic-problems0MySQL integer unsigned arithmetic problems?Xepoch2009-11-14T06:16:34Z2009-11-14T06:51:07Z
<p>Does MySQL (5.0.45) like to do strange internal typecasts with unsigned maths? I am storing integers unsigned but when selecting basic arithmetic I get outrageous numbers:</p>
<pre><code>mysql> create table tt ( a integer unsigned , b integer unsigned , c float );
Query OK, 0 rows affected (0.41 sec)
mysql> insert into tt values (215731,216774,1.58085);
Query OK, 1 row affected (0.00 sec)
mysql> select a,b,c from tt;
+--------+--------+---------+
| a | b | c |
+--------+--------+---------+
| 215731 | 216774 | 1.58085 |
+--------+--------+---------+
1 row in set (0.02 sec)
mysql> select (a-b)/c from tt;
+---------------------+
| (a-b)/c |
+---------------------+
| 1.1668876878652e+19 |
+---------------------+
1 row in set (0.00 sec)
mysql> -- WHAT?
mysql> select a-b from tt;
+----------------------+
| a-b |
+----------------------+
| 18446744073709550573 |
+----------------------+
1 row in set (0.02 sec)
</code></pre>
<p>I assume this has to do with the fact that the subtraction is negative and thus it is trying to map the results into an unsigned and overflowing? I can solve this apparently by changing everything to signed, but I'd prefer to have a little more positive space with my 32-bit integers.</p>
<p>I have not run into this before on MySQL and I'm pretty certain I've done lots with unsigned MySQL arithmetic; is this a common problem?</p>
http://stackoverflow.com/questions/1706480/how-to-convert-integer-to-date-in-jsp-page-and-then-format-that-date0How to convert Integer to Date in JSP page and then format that Date ?newbie2009-11-10T08:54:27Z2009-11-10T09:07:01Z
<p>I get following varaiable, but I cannot format Integer, so is there any way to convert Integer to Date in JSP page?</p>
<pre><code><fmt:formatDate value="${c.dateInIntegerValue}" pattern="dd.MM.yyyy hh:mm"/>
</code></pre>
http://stackoverflow.com/questions/1705069/storing-ints-in-a-dictionary1Storing ints in a DictionaryWayfarer2009-11-10T01:12:04Z2009-11-10T03:01:26Z
<p>As I understand, in Objective-C you can only put Objects into dictionaries. So if I was to create a dictionary, it would have to have all objects. This means I need to put my ints in as NSNumber, right?</p>
<p>SOo...</p>
<pre><code>NSNumber *testNum = [NSNumber numberWithInt:varMoney];
NSMutableDictionary *dictionary = [[NSMutableDictionary alloc] init];
[dictionary setObject:@"OMG, Object 1!!!!" forKey:@"1"];
[dictionary setObject:@"Number two!" forKey:@"2"];
[dictionary setObject:testNum forKey:@"3"];
NSNumber *retrieved = [dictionary objectForKey:@"3"];
int newVarMoney = [retrieved intValue];
</code></pre>
<p>Where varMoney is an int that has been declared earlier. My question is, is there a better way to store "int" in a dictionary than putting it into a NSNumber?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1700071/define-integer-array-fortran0define integer array fortranPraveen2009-11-09T09:57:23Z2009-11-09T12:31:19Z
<p>Hello friends,</p>
<p>I am a newbee in Fortran.
Can any1 tell me how to define an integer array in prior.
E.g.
I want to define an array with no.of days in 12 months.
like...</p>
<p>integer,allocatable(12,1) :: days</p>
<p>days=[31,28,31,30,31,30,31,31,30,31,30,31]</p>
<p>Is this syntax correct....or please let me know the correct one.</p>
<p>Thanks
Praveen</p>
http://stackoverflow.com/questions/1489830/efficient-way-to-determine-number-of-digits-in-an-integer8Efficient way to determine number of digits in an integerSeth2009-09-28T23:20:15Z2009-11-08T14:15:34Z
<p>What is a very <strong><em>efficient</em></strong> way of determining how many digits there are in an integer in C++?</p>
http://stackoverflow.com/questions/1692003/pseudorandom-sequence-generator-not-just-a-number-generator1Pseudorandom Sequence Generator not just a number generator.Sam Washburn2009-11-07T04:35:13Z2009-11-07T06:45:57Z
<p>I need an algorithm that pretty much will turn a unix timestamp into a suitably random number, so that if I "play back" the timestamps I get the same random numbers.</p>
<p>And here's what I mean by suitably:</p>
<ol>
<li>Most humans will not detect a loop or pattern in the random numbers.</li>
<li>It need not be cryptographically secure.</li>
<li>All numbers must be capable of being generated. (I've found that LFSR don't do this)</li>
<li>The numbers are 32 bit integers</li>
</ol>
<p>And I would like it to be fairly fast.</p>
<p>So far my idea is to just seed a PRNG over and over, but I'm not sure if that's the best way to handle this.</p>
<p>Any thoughts and ideas will be much appreciated.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1683290/conversion-from-string-to-type-integer-is-not-valid0Conversion from string "" to type 'Integer' is not valid.stratrider2009-11-05T20:15:57Z2009-11-05T20:37:04Z
<p>When I try to run the following code I get a Conversion from string "" to type 'Integer' is not valid. error.</p>
<pre><code> Dim maj = (From c In connect.Courses _
Where c.COTRequired = CBool("True") _
Select c.CourseID, c.CourseName, c.CreditHours).Except _
(From en In connect.Enrollments _
Join s In connect.Sections On en.SectionID Equals s.SectionID _
Join cs In connect.Courses On s.CourseID Equals cs.CourseID _
Join st In connect.Students On en.StudentID Equals st.StudentID _
Order By cs.CourseName _
Where st.StudentID = CInt(SID) _
Select cs.CourseID, cs.CourseName, cs.CreditHours)
Dim maj2 = (From m2 In maj _
Select m2.CreditHours).Sum().ToString
</pre>
<p><b> Here is the error detail. I know there is some type of conversion that needs to take place, but am having trouble pinning down exactly which one.</b></p>
<p>System.InvalidCastException was unhandled by user code
Message="Conversion from string "" to type 'Integer' is not valid."
Source="System.Data.Linq"
StackTrace:
at System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
at System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
at System.Data.Linq.SqlClient.QueryConverter.Visit(Expression node)
at System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
at System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
at System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
at System.Data.Linq.SqlClient.QueryConverter.Visit(Expression node)
at System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
at System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
at System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
at System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
at System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
at System.Data.Linq.SqlClient.QueryConverter.Visit(Expression node)
at System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
at System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
at System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
at System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
at System.Data.Linq.SqlClient.QueryConverter.Visit(Expression node)
at System.Data.Linq.SqlClient.QueryConverter.VisitExcept(Expression source1, Expression source2)
at System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
at System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
at System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
at System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
at System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
at System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
at System.Data.Linq.DataQuery<code>1.System.Collections.Generic.IEnumerable<T>.GetEnumerator()
at System.Collections.Generic.List</code>1..ctor(IEnumerable<code>1 collection)
at System.Linq.Enumerable.ToList[TSource](IEnumerable</code>1 source)
at System.Data.Linq.Provider.BindingList.Create1 sequence)
at System.Data.Linq.DataQuery</code>1.GetNewBindingList%28">T
at System.Data.Linq.DataQuery`1.System.ComponentModel.IListSource.GetList()
at System.Windows.Forms.ListBindingHelper.GetList(Object list)
at System.Windows.Forms.ListBindingHelper.GetList(Object dataSource, String dataMember)
at System.Windows.Forms.BindingSource.ResetList()
at System.Windows.Forms.BindingSource.set_DataSource(Object value)
at WindowsApplication1.Form1.ComboBox1_SelectedIndexChanged(Object sender, EventArgs e) in C:\Users\Charles.McBeth\Documents\School\ProgramManagement\Final Project\Final Project\Final Project\Form1.vb:line 68
at System.Windows.Forms.ComboBox.OnSelectedIndexChanged(EventArgs e)
at System.Windows.Forms.ComboBox.set_SelectedIndex(Int32 value)
at System.Windows.Forms.ComboBox.RefreshItems()
at System.Windows.Forms.ComboBox.OnDataSourceChanged(EventArgs e)
at System.Windows.Forms.ListControl.SetDataConnection(Object newDataSource, BindingMemberInfo newDisplayMember, Boolean force)
at System.Windows.Forms.ListControl.set_DataSource(Object value)
InnerException: System.FormatException
Message="Input string was not in a correct format."
Source="Microsoft.VisualBasic"
StackTrace:
at Microsoft.VisualBasic.CompilerServices.Conversions.ParseDouble(String Value, NumberFormatInfo NumberFormat)
at Microsoft.VisualBasic.CompilerServices.Conversions.ToInteger(String Value)
InnerException: </p>
http://stackoverflow.com/questions/1664803/objective-c-synthesize-not-working-and-basic-operations-not-working1objective-C : @synthesize not working and basic operations not working :*( jackson2009-11-03T02:07:15Z2009-11-03T13:23:37Z
<p>I am unsure why this code will not work and what i want it to do is when i click a button(action: buttonclick) i want it to change the two text box's(MyTextLabel & MyTextLabel2) text increment the value "r" by one. here is the code:</p>
<pre><code>MainView.h
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
@interface MainView : UIView {
IBOutlet UIButton *MyButton;
IBOutlet UILabel *MyTextLabel;
IBOutlet UILabel *MyTextLabel2;
}
@property (nonatomic, retain) UIButton *MyButton;
@property (nonatomic, retain) UILabel *MyTextLabel;
@property (nonatomic, retain) UILabel *MyTextLabel2;
- (IBAction)buttonclick;
@end
</code></pre>
<p>MainView.m:</p>
<pre><code>#import "MainView.h"
#include <stdlib.h>
#include <libc.h>
@implementation MainView
@synthesize MyButton, MyTextLabel, MyTextLabel2;
int r;
- (IBAction)buttonclick {
r++
if(r < 50) {
MyTextLabel.text = @"< 50";
} else {
MyTextLabel2.text = @"=> 50";
}
}
@end
</code></pre>
http://stackoverflow.com/questions/1655904/c-convert-pointer-string-to-integer1c++ - convert pointer string to integerD-Boy2009-10-31T23:24:46Z2009-11-01T03:35:29Z
<p>I am trying to convert <code>treePtr->item.getInvest()</code> which contains a string to an integer. Is this possible?</p>
http://stackoverflow.com/questions/1592297/quick-multiplication-question-cocoa0Quick Multiplication Question - CocoaKevin2009-10-20T03:30:50Z2009-10-27T13:35:05Z
<p>Hi there,</p>
<p>I'm still learning, and I'm just stuck. I want the user to enter any number and in result, my program will do this equation:</p>
<pre><code>x = 5*y
</code></pre>
<p>(<code>y</code> is the number the user adds, <code>x</code> is outcome)</p>
<p>How would I do this? I'm not sure if I'm suppose to add in an <code>int</code> or <code>NSString</code>. Which should I use, and should I enter anything in the header files?</p>
http://stackoverflow.com/questions/1619656/coverting-an-integer-to-bits-in-ocaml1Coverting an integer to bits in ocaml [closed]Evan Parker2009-10-25T01:07:16Z2009-10-26T20:41:54Z
<p>This seems like a pretty simple problem, but I'm new to OCaml and need some help with the syntax. I'm representing the bit 0 as false and 1 as true. I need a recursive function that will take a positive integer and convert it to binary with the lower order bit at the <em>beginning</em> of the returning list. For instance, converting the integer 8 to binary results in 0001, therefore the function should return [false; false; false; true]. Another example: if the integer is 18, the binary is 01001, and thus the list will be [false; true; false; false; true]. I know I probably have to use mod and division by 2 somewhere...</p>
http://stackoverflow.com/questions/372148/regex-to-find-an-integer-within-a-string4Regex to find an integer within a stringmc66882008-12-16T18:05:47Z2009-10-22T20:08:14Z
<p>I'm new to using regex and I'd like to use it with Java.</p>
<p>What I want to do is find the first integer in a string.</p>
<p>Example:
String = "the 14 dogs ate 12 bones"
Would return 14.</p>
<p>String = "djakld;asjl14ajdka;sdj"</p>
<p>Would also return 14.</p>
<p>This is what I have so far.</p>
<pre><code>Pattern intsOnly = Pattern.compile("\\d*");
Matcher makeMatch = intsOnly.matcher("dadsad14 dssaf jfdkasl;fj");
makeMatch.find();
String inputInt = makeMatch.group();
System.out.println(inputInt);
</code></pre>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/1600515/fast-multiplication1Fast MultiplicationGeorg2009-10-21T12:34:24Z2009-10-21T15:02:02Z
<p>Hi!</p>
<p>I'm writing code for a microprocessor with fast integer arithmetic and <em>not so fast</em> float arithmetic. I need to divide an integer by a number from 1 to 9 and convert result back to integer.</p>
<p>I made a float array with members like 0, 1, 0.5, 0.3333 etc.
But i think there is MAGIC constants (like 0x55555556) for a numbers except (1/3).</p>
<p>What are this numbers?</p>
http://stackoverflow.com/questions/1495988/how-can-i-check-if-a-string-contains-a-number-smaller-than-an-integer0How can I check if a string contains a number smaller than an integer?Ryan2009-09-30T03:32:59Z2009-10-20T08:38:15Z
<p>Having some issue with this...</p>
<pre><code> if (System.Convert.ToInt32(TotalCost(theOrder.OrderData.ToString()).ToString()) < 10000)
ViewData["cc"] = "OK";
else
ViewData["cc"] = "NO";
</code></pre>
<p>yields: "Input string was not in a correct format."</p>
<p>How can I check if the number inside the string is less than 10000?</p>
<p>Oh yeah: TotalCost returns a ContentResult of type text/plain</p>
http://stackoverflow.com/questions/1583023/how-does-an-environment-e-g-ruby-handle-massive-integers0How does an environment (e.g. Ruby) handle massive integers?dsclose2009-10-17T19:33:12Z2009-10-19T22:49:52Z
<p>My integers in Ruby (MRI) refuse to overflow. I've noticed the class change from fixnum to bignum but I'm wondering how this is modeled and what sort of process ruby uses to perform arithmetic on these massive integers. I've seen this behaviour in SCHEME as well as other environments.</p>
<p>I ask because I'd like to implement something similar in a C program and would like to know how bignum + bignum reduces to primitive operations.</p>
<p>Any pointers?</p>
http://stackoverflow.com/questions/523733/compress-sorted-integers6Compress sorted integersDaniel2009-02-07T13:15:09Z2009-10-19T05:51:53Z
<p>Hi!</p>
<p>I'm building a index which is just several sets of ordered 32 bit integers stored continuously in a binary file. The problem is that this file grows pretty large. I've been thinking of adding some compressions scheme but that's a bit out of my expertise. So I'm wondering, what compression algorithm would work best in this case? Also, decompression has to be fast since this index will be used to make make look ups.</p>
http://stackoverflow.com/questions/1574605/how-to-convert-an-ascii-value-into-a-character-in-net2How to convert an ASCII value into a character in .NETdemoncodemonkey2009-10-15T19:43:12Z2009-10-15T20:18:04Z
<p>There are a million posts on here on how to convert a character to its ASCII value.<br />
Well I want the complete opposite.<br />
I have an ASCII value stored as an int and I want to display its ASCII character representation in a string.</p>
<p>i.e. please display the code to convert the int <code>65</code> to <code>A</code>.</p>
<p>What I have currently is <code>String::Format("You typed '{0}'", (char)65)</code></p>
<p>but this results in <code>"You typed '65'"</code> whereas I want it to be <code>"You typed 'A'"</code></p>
<p>I am using C++/CLI but I guess any .NET language would do...</p>
<p><em>(edited post-humously to improve the question for future googlers)</em></p>