Adding one to the value of a variable, generally with the use of an increment operator.
2
votes
1answer
30 views
Increasing speed of Timer in Java
I'm making a game with Java and I'm currently using Timers for all my animations and game controls. But I'm having trouble choosing the right way to increase the speed of a Timer. My game is supposed ...
1
vote
2answers
31 views
Different for-loop incremental value
I recently fiddled around with some for loops, and tried to get my head around some of the logical part of it. While i'm far beyond the level of loops at this point, I still tend to get a bit weird ...
0
votes
4answers
47 views
Run-time error in program
int main()
{
char *p="abcd";
while(*p!='\0') ++*p++;
printf("%s",p);
return 0;
}
I am not able to understand why the code does not run. The problem is in the statement ++*p++, but what is ...
0
votes
3answers
23 views
increment base value python for loop
How do I increment a base value each time "i" is looped in a for loop?
The logic is something like:
fruits = [bananas, apples, pears]
total_fruits_count = 0
for i in fruits:
## some code ...
4
votes
2answers
89 views
How to make a pointer increment by 1 byte, not 1 unit
I have a structure tcp_option_t, which is N bytes. If I have a pointer tcp_option_t* opt, and I want it to be incremented by 1, I can't use opt++ or ++opt as this will increment by ...
0
votes
1answer
28 views
How to increment div value after cloning using clone()
I am trying to output the header as Group 1 , Group 2 and so on, after cloning the div.
However when I try to set the Group Name after clicking the button it gives me Group 1 whereas I want the first ...
3
votes
1answer
37 views
increment row number when value of field changes in Oracle
I need help in writing a query in Oracle for the following data. The data is sorted by Person and Day fields.
Person Day Flag
------ --- ----
person1 day1 Y
person1 ...
1
vote
2answers
45 views
JavaScript - Incrementing a value attribute
I have a problem that I can't get my head around (pretty new to JavaScript). Need to know how to increment variables in HTML with an document.createElement event (if that's the right terminology).
I ...
0
votes
3answers
44 views
JavaScript array iteration - MDN example
I was reading the re-introduction to JavaScript on the MDN website and came across this example in the Array section:
for (var i = 0, item; item = a[i++];){
// Do something with item
}
Where ...
0
votes
1answer
27 views
Run and increment a counter in VHDL
I need to design VHDL to run a counter on a seven segment display. The three inputs are start, stop, and increment based on three pushbuttons. Start will start the counter and it won't stop until the ...
-3
votes
1answer
52 views
Double increment
I am try to workout a table like below image. I have tried using for loop but cant seem to get the right outcome.
Can someone help me out here.. Thanks loads!
This my code:
double XCor = 10;
double ...
-3
votes
3answers
51 views
simple java incrementing not clear [closed]
im trying to understand the basics of incrementing in Java...Here I have the basic example and I'm not understanding the output of it very crearly...so it starts as 4 which is 2 * 2 of course, and 9 ...
0
votes
1answer
32 views
Incrementing an instance of int's subclass in it's own method?
I've inherited a class from int and I'm trying to create a method that increases my instance's value inside the method:
class MyInt(int):
def my_method(self, value):
#do_stuff()
...
0
votes
2answers
47 views
Check if username exists, if so, increment by one
When a username is inserted into my database, such as:
John_Smith
I need to check if there is already a John_Smith present. If so, increment it by 1 to become John_Smith_1
So if the following ...
1
vote
2answers
66 views
Python increment pulling from an array in a loop
I am trying to create something that would
Read a file
Separate ever thing into an array
Use the first string in the array and do something
After done go back to the second array and do something
...
1
vote
0answers
80 views
Java: Wrong variable increasing?
This little snippet of code for some reason isn't working properly. What this is supposed to do is make a move if "i" is less than "colLength", which is 2 at this point meaning it should stop after ...
4
votes
3answers
119 views
Increment on “__toString”
I am not sure what the title should be, but the code should explain it better:
class Group {
private $number = 20;
public function __toString() {
return "$this->number";
}
}
...
-2
votes
3answers
83 views
nested foreach loops with switch statement not incrementing case variable [closed]
I have this code:
foreach(List<string> build in Builds)
{
int i = 0;
foreach(string item in build)
{
...
1
vote
0answers
35 views
How to auto increment a non primary id column using Hibernate?
I have kept auto increment for primary key, by using auto increment option in my Table.
And I stated that using hibernate.
But now I want to auto increment a column which is not a primary key column ...
0
votes
0answers
70 views
sencha touch 2, add item list from query server
i have a problem with my list in secha touch 2.2.0.
These are my codes :
Blog.js (views)
Ext.define('xxx.view.Blog', {
extend: 'Ext.navigation.View',
requires:[
'xxx.store.Blogs',
...
0
votes
1answer
13 views
MySQL: mass insert new records or increment existing
I need to make something like this:
INSERT `stats` (`id`,`clicks`) VALUES
(1, clicks+7),
(2, clicks+3),
....
ON DUPLICATE KEY UPDATE `clicks`=VALUES(clicks)
in other words, when table has no ...
0
votes
1answer
33 views
Will Incremental ID solve the Radio Button behavior issue with clone()?
I have several issues, none of which I have successfully resolved individually. I read through all the Q&A regarding cloned radio buttons and then tried many if not most of the incremental ID ...
-2
votes
1answer
38 views
Conditional is a variable that increments processing java [closed]
I need to make a condition that rest the value of an integral by the increment of an arraylist size. This is what I have
if(pintables.size()%1==0) {
alfa-=4;
}
if(alfa<0) {
alfa=0;
}
Every ...
0
votes
1answer
42 views
Python nested while-loop doesn't increment as expected
I'm writing a function in Python to pixelate an image, but for some reason xx and x doesn't increment. Both variables keep the value 0 throughout and nothing happens.
xx = 0
yy = 0
while xx < ...
0
votes
1answer
67 views
jQuery: Increment number using animate with comma
I'm trying to increment a number inside an element on page. But I need the number to include a comma for the thousandth place value. (e.g. 45,000 not 40000)
<script>
// Animate the element's ...
0
votes
1answer
28 views
Increment an int using Jbuttons for use with an array
public class ButtonEventHandler implements ActionListener {
int arrayCount=0;
int[] pinArray = new int[4];
public void actionPerformed(ActionEvent e) {
JButton x = (JButton) ...
0
votes
1answer
45 views
Incrementing (iterating) between two hex values in Python
I'm learning Python (slowly but surely) but need to write a program that (among other things) increments between two hex values e.g. 30D681 and 3227FF.
I'm having trouble finding the best way to do ...
0
votes
2answers
39 views
Increment Cell Ref in Formula for each Cell within a Column
Forgive me for my ignorance but I need help with the following code
Sub D3()
Dim currentRow As String
Dim sTemp As String
sTemp = Range("D3").Formula 'cell in sheet that needs reference to be ...
0
votes
2answers
55 views
Increasing value by 1 continues forever
So, I have been working on this code for way to long for one day. I am sure there has to be a simple way to solve this but I can't think anything right now. First a small section of the code:
...
0
votes
3answers
33 views
Storing last valid Index in a for loop
Related Question: Incrementing: x++ vs x += 1
I have code that is like this:
int lastValidIndex = -1;
for(int i = 0; i < limit; i++){
if (condition)
lastValidIndex++;
else
...
-1
votes
0answers
50 views
HOw to auto increment size of existing csv file by uising java code?
i am generating csv files and adding some records into that CSV files from mysql database by passing query in my java code.The CSV file is generating but the width of column size is not auto incresed ...
0
votes
2answers
129 views
jQuery: Stop decrementing textbox value if value equals 0
What I have:
I have a readonly textbox and two links. The first link increments the value of the textbox by 1 whereas the second link decrements the value by 1.
What I need:
I need the textbox ...
1
vote
3answers
39 views
incrementing a counter variable inside a FORLOOP
why is the variable "number" not increasing when the FOR loop goes over it again?
setLocal EnableDelayedExpansion
for /f "tokens=* delims= " %%a in (input.txt) do (
set /a N+=1
set /a ...
1
vote
4answers
26 views
Increment of field default value in mysql/php
$saa = "update aspirantdt set vote = 'vote'+1 where 'post_id' = '$id' ";
When i check the database the value didnt increase.
Help me out.
0
votes
2answers
26 views
How to add A through Z at the end of a string PHP
What I am doing is taking a vehicle VIN number and taking the last 6 digits of it and storing it as a stock number. The issue I have is I have a function that goes and checks the database to make sure ...
1
vote
1answer
98 views
counting results from a defined matrix
So I am very new to programming and Haskell is the first language that I'm learning. The problem I'm having is probably a very simple one but I simply can not find an answer, no matter how much I ...
1
vote
4answers
29 views
ksh - var = $var + 1 returns 1+1 string
My code:
RETVAL1=-1
if [ $RETVAL1 -le 0 ] ; then
RETVAL1=$RETVAL1+1
print "RETVAL1: $RETVAL1"
fi
And it prints RETVAL1: -1+1
Any idea how to repair it please?
0
votes
1answer
85 views
Returning a variable to use within another function in JQuery
I'm making an image gallery, when I click a button I can scroll through to the next image.
I also have the option to 'jump' to a specific image. This all works fine.
However, if I scroll regularly ...
0
votes
2answers
85 views
php SQL how to keep data and maybe autoincrement instead of replacing record in a field
an sql database 'test' having table 'patients' and within table is a field 'prescription' of datatype varchar (200 max length) currently hosts inputted text and numbers.
I'm able to fetch ...
1
vote
3answers
39 views
Weird incremented query result in a while
I don't understand why the result of the '$taille' array begin to the key [1] instead of key [0]? So it s displaying 3 results instead of 4 (occulting the first result)...
<?php
$req = ...
-1
votes
1answer
18 views
Increment value upto missing consicutive numbers
I have a table with a field have values 1,2,3,5,6,....
My problem is,When i try to insert "2" current 2,3 are incremented with 1 and 5,6 remains unchanged(because 4 is not exist),Then in the place of ...
0
votes
0answers
31 views
Clone row Increment name jquery
Well my problem is the following.. I wanna clone a element but also increment the name like fotonaam[1] fotomaam[2] fotonaam[3]
Cloning isn't to difficult but i just can't wrap my head around this ...
-1
votes
5answers
169 views
i++ vs ++i as operation (NO loop) [duplicate]
Does any one can help me with understand the different between:
i++;
++i;
I already know that i++ first does the operation and after that increments i, and ++i, increments and after that does the ...
0
votes
1answer
80 views
PHP While Loop - Writing to Variable Multiple Times With Heredoc
I am writing a script to pull from the database and dynamically create a table of items. The loop I am using breaks everytime I try to increment a varible.
Here is an example with the same result:
...
0
votes
0answers
79 views
vb.net: Incrementing file numbers while moving them
This is what i am trying to attempt here.
In the [SourceFolder] there are several pdf files created after scanning. Each file has a timestamp in its name and only one file will have an order id and ...
12
votes
2answers
303 views
Increment working very strangely
This program is supposed to give to the last 100 digits of any size factorial. However, there's something weird going on with the counter2++ in main(). counter2 is incremented +1 for each time the ...
1
vote
1answer
34 views
Mixed increment operators with logical operators
I have a question concerning pre and post increments with logical operators
if I have this code
void main()
{int i = - 3 , j = 2 , k = 0 , m ;
m=++i||++j&&++k;
printf("%d %d %d ...
9
votes
3answers
190 views
Thread safe Increment in C#
I am trying to Increment an element in a list in C#, but I need it to be thread safe, so the count does not get affected.
I know you can do this for integers:
Interlocked.Increment(ref ...
-2
votes
2answers
58 views
Increment a variable in Javascript
I am trying to increment a variable using Javascript, but I am not quite understanding what I am doing wrong. What do I need to change?
function init(){
var a = 0;
}
function repeat(){
a = ...
0
votes
1answer
31 views
Maintain Left/Right Positioning for cells in a UITableView when scrolling up and down
I have an app that uses an NSFetchedResultsController to grab various results from a database and display them in a UITableViewCell. For artistic reasons, at all times I want alternating cells to be ...










