Click here to Skip to main content
15,902,904 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Undefined reference error while using libxl libraries for Excel usage Pin
Faez Shingeri7-Feb-12 1:31
Faez Shingeri7-Feb-12 1:31 
GeneralRe: Undefined reference error while using libxl libraries for Excel usage Pin
Jochen Arndt7-Feb-12 1:51
professionalJochen Arndt7-Feb-12 1:51 
QuestionMessage Removed Pin
8-Feb-12 21:51
Faez Shingeri8-Feb-12 21:51 
AnswerRe: Undefined reference error while using libxl libraries for Excel usage Pin
Jochen Arndt8-Feb-12 22:19
professionalJochen Arndt8-Feb-12 22:19 
QuestionBasic Class Structure for Different Component in c++ Pin
002comp31-Jan-12 18:44
002comp31-Jan-12 18:44 
AnswerRe: Basic Class Structure for Different Component in c++ Pin
ThatsAlok31-Jan-12 18:59
ThatsAlok31-Jan-12 18:59 
QuestionInserting Carriage return line feed into CRichEdit Pin
ForNow31-Jan-12 12:54
ForNow31-Jan-12 12:54 
AnswerRe: Inserting Carriage return line feed into CRichEdit Pin
Richard Andrew x6431-Jan-12 14:10
professionalRichard Andrew x6431-Jan-12 14:10 
You've declared these pointers, but you haven't allocated any memory for them to point to:

C++
LPBYTE holdptr1, pbBuff;


Another probable error is that you are changing what holdptr1 is pointing to by adding to it:
C++
holdptr1 = holdptr1 + 121;


After seeing this post and some of your previous posts, I can say that you need to study how pointers work. You'll never be able to write code in C/C++ until you fully understand them.

You should find a tutorial or a book that you like, and study it.



The difficult we do right away...
...the impossible takes slightly longer.

AnswerRe: Inserting Carriage return line feed into CRichEdit Pin
Richard MacCutchan31-Jan-12 21:33
mveRichard MacCutchan31-Jan-12 21:33 
QuestionComputer ID's for Licensing Purposes Pin
Bram van Kampen31-Jan-12 12:46
Bram van Kampen31-Jan-12 12:46 
AnswerRe: Computer ID's for Licensing Purposes Pin
Richard Andrew x6431-Jan-12 14:15
professionalRichard Andrew x6431-Jan-12 14:15 
GeneralRe: Computer ID's for Licensing Purposes Pin
Bram van Kampen2-Feb-12 14:30
Bram van Kampen2-Feb-12 14:30 
QuestionRadio button text color not set Pin
MKC00231-Jan-12 5:57
MKC00231-Jan-12 5:57 
QuestionRe: Radio button text color not set Pin
Richard MacCutchan31-Jan-12 21:30
mveRichard MacCutchan31-Jan-12 21:30 
GeneralRe: Radio button text color not set Pin
MKC0021-Feb-12 7:18
MKC0021-Feb-12 7:18 
AnswerRe: Radio button text color not set Pin
Richard MacCutchan1-Feb-12 7:40
mveRichard MacCutchan1-Feb-12 7:40 
GeneralRe: Radio button text color not set Pin
MKC0022-Feb-12 19:29
MKC0022-Feb-12 19:29 
GeneralRe: Radio button text color not set Pin
Richard MacCutchan2-Feb-12 22:54
mveRichard MacCutchan2-Feb-12 22:54 
QuestionHelp! Use a sentence, positive and negative output, For example:1 -1 . 1000 -1000 Can use a formal parameters,Can't use loop Pin
Cary Hill31-Jan-12 3:10
Cary Hill31-Jan-12 3:10 
AnswerRe: Help! Use a sentence, positive and negative output, For example:1 -1 . 1000 -1000 Can use a formal parameters,Can't use loop Pin
Albert Holguin31-Jan-12 3:27
professionalAlbert Holguin31-Jan-12 3:27 
QuestionRe: Help! Use a sentence, positive and negative output, For example:1 -1 . 1000 -1000 Can use a formal parameters,Can't use loop Pin
David Crow31-Jan-12 4:52
David Crow31-Jan-12 4:52 
AnswerRe: Help! Use a sentence, positive and negative output, For example:1 -1 . 1000 -1000 Can use a formal parameters,Can't use loop Pin
jschell31-Jan-12 8:38
jschell31-Jan-12 8:38 
GeneralRe: Help! Use a sentence, positive and negative output, For example:1 -1 . 1000 -1000 Can use a formal parameters,Can't use loop Pin
Bram van Kampen31-Jan-12 11:55
Bram van Kampen31-Jan-12 11:55 
GeneralRe: Help! Use a sentence, positive and negative output, For example:1 -1 . 1000 -1000 Can use a formal parameters,Can't use loop Pin
ThatsAlok31-Jan-12 19:02
ThatsAlok31-Jan-12 19:02 
Questionstrange realization of StrToD() Pin
a_matseevsky31-Jan-12 2:22
a_matseevsky31-Jan-12 2:22 

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.