Tagged Questions

0
votes
1answer
26 views

How to create dots in Power Point VBA, move them around in different directions while keeping them connected with straight lines?

Hello everybody. There is one thing I want to do in Power Point VBA. I want to create two dots in the main window - dot A and dot B - by their given coordinates: for example, A …
0
votes
0answers
74 views

[jQuery] Next and Previous Slide Button Functionality i++, i--

Hi Ya'll, I had a great experience asking a question last time and thought I'd come back for more help. You guys are wonderful. Thank you in advance. I am working with a featur …
3
votes
4answers
230 views

Mysql auto increment primary key id’s

I have some mysql tables that have auto incrementing id's that are primary keys, but I notice that I never actually use them... I used to think that every table must have a primary …
0
votes
3answers
101 views

Problem with MySql INSERT MAX()+1

I have a single table containing many users. In that table I have column called user_id (INT), which I want increment separately for each person. user_id MUST start at 1 I've prep …
0
votes
2answers
149 views

std::map::iterator crashes program on increment

What could cause this? Here's the stack trace: #0 0x0645c0f5 in std::_Rb_tree_increment (__x=0x83ee5b0) at ../../../../libstdc++-v3/src/tree.cc:69 #1 0x0805409a in std::_Rb …
-1
votes
10answers
398 views

C# Compiler Behavior Question?

Hey everyone, in the following code, what should the result of d be after the second expression? int d = 1; d += d++; One would assume d is 3 afterwards but the unary incre …
0
votes
3answers
26 views

MySQL - second sequence in table (e.g. by category)

Hi all, I'm trying to find the most efficient way to do something and would appreciate your advice! I have a table with the following columns: id category category_sequence othe …
1
vote
5answers
219 views

post increment vs pre increment - Javascript Optimization

I was browsing Google Code when I chanced upon this project called JSpeed - optimization for Javascript. I noticed one of the optimization was to change i++ to ++i in for loop sta …
0
votes
3answers
410 views

Python: Behaviour of increment and decrement operators

I am a newbie to Python. I notice that a pre-increment/decrement operator can be applied on a variable (like ++count). It compiles, but it does not actually change the value of the …
0
votes
4answers
226 views

Why does int count jump from 1 to 4 on entering a loop? C++

My "counter" is jumping from 1 to 4 when I enter my loop. Any ideas? Code and output below: static bool harvestLog() { ifstream myFile("LOGS/ex090716.log"); if (myFile.fail( …
2
votes
7answers
1k views

Java, infinite while loop, incrementation

Hello, in the following example program in Java, I get infinite loop, and I cannot understand why: public class Time { public static int next(int v) { return v++; } …
0
votes
2answers
68 views

Increment values using Zend_DB_Table Raw SQL

I have a website where a user can upload images for a real estate property. The table structure: image_id property_id userid filename thumbfilename display_order timestamp The s …
0
votes
0answers
18 views

Increment backup of site [closed]

I want to make periodical archive of my site. I have lftp script to download site content via ftp to today (date +%Y%m%d) directory. What is best way to make increment backup with …
10
votes
6answers
354 views

Why use ++i instead of i++ in cases where the value is not used anywhere else in the statement?

I'm well aware that in C++ int someValue = i++; array[i++] = otherValue; has different effect compared to int someValue = ++i; array[++i] = otherValue; but every once in a wh …
2
votes
2answers
84 views

How to program a vote up system?

I am in the very beginnings of teaching myself php. I am giving myself micro projects to push myself. Thus far I have a MYSQL database, created through a php form. One Column is f …

1 2 3 next
15 30 50 per page