Click here to Skip to main content
15,891,657 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Need to call (ODBC) Data Source Administrator dialog screen while installing my MSI .( in VS 2005) Pin
Frank Seidler24-Nov-09 9:25
Frank Seidler24-Nov-09 9:25 
GeneralRe: Need to call (ODBC) Data Source Administrator dialog screen while installing my MSI .( in VS 2005) Pin
jain_MS25-Nov-09 0:13
jain_MS25-Nov-09 0:13 
QuestionQuestion about an BYTE value changing into pointer, then array Pin
yeah100024-Nov-09 4:57
yeah100024-Nov-09 4:57 
AnswerRe: Question about an BYTE value changing into pointer, then array Pin
Chris Losinger24-Nov-09 5:19
professionalChris Losinger24-Nov-09 5:19 
AnswerRe: Question about an BYTE value changing into pointer, then array Pin
Nemanja Trifunovic24-Nov-09 5:34
Nemanja Trifunovic24-Nov-09 5:34 
GeneralRe: Question about an BYTE value changing into pointer, then array Pin
CPallini24-Nov-09 7:01
mveCPallini24-Nov-09 7:01 
GeneralRe: Question about an BYTE value changing into pointer, then array [modified] Pin
Nemanja Trifunovic24-Nov-09 7:11
Nemanja Trifunovic24-Nov-09 7:11 
GeneralRe: Question about an BYTE value changing into pointer, then array Pin
Iain Clarke, Warrior Programmer24-Nov-09 7:40
Iain Clarke, Warrior Programmer24-Nov-09 7:40 
Well, which is cleaner?

1)
for (i = 0; i < 7; i++)
   DoSomething (ptr [i]);

2)
for (i = 0; i < 7; i++)
   DoSomething (*(ptr+i));

3)
for (i = 0; i < 7; i++)
   DoSomething (*ptr++)


1 & 2 do the same thing.
3 messes up ptr too.

Iain.

I have now moved to Sweden for love (awwww).
If you're in Scandinavia and want an MVP on the payroll (or happy with a remote worker), or need contract work done, give me a job! http://cv.imcsoft.co.uk/[^]

GeneralRe: Question about an BYTE value changing into pointer, then array [modified] Pin
Nemanja Trifunovic24-Nov-09 8:01
Nemanja Trifunovic24-Nov-09 8:01 
AnswerRe: Question about an BYTE value changing into pointer, then array Pin
David Crow24-Nov-09 17:00
David Crow24-Nov-09 17:00 
QuestionC++ question for new grad Pin
chan1124-Nov-09 4:40
chan1124-Nov-09 4:40 
AnswerRe: C++ question for new grad Pin
Dave Calkins24-Nov-09 4:53
Dave Calkins24-Nov-09 4:53 
GeneralRe: C++ question for new grad Pin
chan1124-Nov-09 5:03
chan1124-Nov-09 5:03 
GeneralRe: C++ question for new grad Pin
Dave Calkins24-Nov-09 12:53
Dave Calkins24-Nov-09 12:53 
GeneralRe: C++ question for new grad Pin
chan1126-Nov-09 10:31
chan1126-Nov-09 10:31 
QuestionProblem with installutil.exe while install a service... Pin
jain_MS24-Nov-09 1:25
jain_MS24-Nov-09 1:25 
AnswerRe: Problem with installutil.exe while install a service... Pin
loyal ginger24-Nov-09 3:16
loyal ginger24-Nov-09 3:16 
GeneralRe: Problem with installutil.exe while install a service... Pin
jain_MS24-Nov-09 3:56
jain_MS24-Nov-09 3:56 
QuestionData from DB to Excel Pin
hellogany23-Nov-09 22:50
hellogany23-Nov-09 22:50 
AnswerRe: Data from DB to Excel Pin
Rajesh R Subramanian23-Nov-09 22:54
professionalRajesh R Subramanian23-Nov-09 22:54 
AnswerRe: Data from DB to Excel Pin
Dave Calkins24-Nov-09 4:54
Dave Calkins24-Nov-09 4:54 
AnswerRe: Data from DB to Excel Pin
David Crow24-Nov-09 17:03
David Crow24-Nov-09 17:03 
AnswerRe: Data from DB to Excel Pin
T210226-Nov-09 21:17
T210226-Nov-09 21:17 
Questionmissing activex control test container in visual studio 2008 Pin
Game-point23-Nov-09 22:43
Game-point23-Nov-09 22:43 
QuestionGetDlgItemText Pin
sashoalm23-Nov-09 20:44
sashoalm23-Nov-09 20:44 

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.