Click here to Skip to main content
15,893,337 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionfor loop incrementing Pin
chaitanya2210-Mar-06 4:01
chaitanya2210-Mar-06 4:01 
AnswerRe: for loop incrementing Pin
Nish Nishant10-Mar-06 4:03
sitebuilderNish Nishant10-Mar-06 4:03 
AnswerRe: for loop incrementing Pin
Divyang Mithaiwala10-Mar-06 4:34
Divyang Mithaiwala10-Mar-06 4:34 
AnswerRe: for loop incrementing Pin
Rster02111110-Mar-06 5:04
Rster02111110-Mar-06 5:04 
GeneralRe: for loop incrementing Pin
Chris Losinger10-Mar-06 10:57
professionalChris Losinger10-Mar-06 10:57 
GeneralRe: for loop incrementing Pin
ThatsAlok10-Mar-06 18:30
ThatsAlok10-Mar-06 18:30 
AnswerRe: for loop incrementing (use of continue) Pin
Koushik Biswas10-Mar-06 9:34
Koushik Biswas10-Mar-06 9:34 
GeneralRe: for loop incrementing (use of continue) Pin
Steve Echols10-Mar-06 19:29
Steve Echols10-Mar-06 19:29 
While this code works, it might not be as intuitive, and more importantly, efficient as:

for (int i = 0; i < 100; i += 2)<br />
{<br />
    // do something<br />
}


Might not be important for small loops, but an extra if and % op can add up in big loops.

- delete that;
AnswerRe: for loop incrementing Pin
chetan21018312-Mar-06 14:04
chetan21018312-Mar-06 14:04 
QuestionSide-by-Side configuration problems Pin
LukeV10-Mar-06 2:50
LukeV10-Mar-06 2:50 
AnswerRe: Side-by-Side configuration problems Pin
oshah10-Mar-06 5:55
oshah10-Mar-06 5:55 
AnswerRe: Side-by-Side configuration problems Pin
Michael Dunn10-Mar-06 6:35
sitebuilderMichael Dunn10-Mar-06 6:35 
Questionbarcode and country, shop,...,readers Pin
includeh1010-Mar-06 2:33
includeh1010-Mar-06 2:33 
AnswerRe: barcode and country, shop,...,readers Pin
David Crow10-Mar-06 2:44
David Crow10-Mar-06 2:44 
GeneralRe: barcode and country, shop,...,readers Pin
includeh1010-Mar-06 7:21
includeh1010-Mar-06 7:21 
GeneralRe: barcode and country, shop,...,readers Pin
David Crow10-Mar-06 7:45
David Crow10-Mar-06 7:45 
GeneralRe: barcode and country, shop,...,readers Pin
includeh1011-Mar-06 2:30
includeh1011-Mar-06 2:30 
QuestionColor of scrollbar of a listbox Pin
Ward10-Mar-06 1:40
Ward10-Mar-06 1:40 
AnswerRe: Color of scrollbar of a listbox Pin
Naveen10-Mar-06 1:48
Naveen10-Mar-06 1:48 
GeneralRe: Color of scrollbar of a listbox Pin
Nishad S10-Mar-06 1:51
Nishad S10-Mar-06 1:51 
GeneralRe: Color of scrollbar of a listbox Pin
Stephen Hewitt10-Mar-06 2:30
Stephen Hewitt10-Mar-06 2:30 
GeneralRe: Color of scrollbar of a listbox Pin
Nishad S10-Mar-06 17:44
Nishad S10-Mar-06 17:44 
Questionset the color to a Button Pin
chetan21018310-Mar-06 1:13
chetan21018310-Mar-06 1:13 
AnswerRe: set the color to a Button Pin
Hamid_RT10-Mar-06 1:23
Hamid_RT10-Mar-06 1:23 
GeneralRe: set the color to a Button Pin
chetan21018310-Mar-06 21:35
chetan21018310-Mar-06 21:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.