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

C / C++ / MFC

 
AnswerRe: writing a plug in for internet browsers Pin
Richard MacCutchan2-Jan-13 1:33
mveRichard MacCutchan2-Jan-13 1:33 
GeneralRe: writing a plug in for internet browsers Pin
muharrem2-Jan-13 2:07
muharrem2-Jan-13 2:07 
GeneralRe: writing a plug in for internet browsers Pin
Richard MacCutchan2-Jan-13 4:20
mveRichard MacCutchan2-Jan-13 4:20 
Questionhow to convert resource only dll to hex-format *.cpp file? Pin
Falconapollo1-Jan-13 22:57
Falconapollo1-Jan-13 22:57 
AnswerRe: how to convert resource only dll to hex-format *.cpp file? Pin
Richard MacCutchan1-Jan-13 23:59
mveRichard MacCutchan1-Jan-13 23:59 
GeneralRe: how to convert resource only dll to hex-format *.cpp file? Pin
Erudite_Eric2-Jan-13 7:10
Erudite_Eric2-Jan-13 7:10 
GeneralRe: how to convert resource only dll to hex-format *.cpp file? Pin
Richard MacCutchan2-Jan-13 7:16
mveRichard MacCutchan2-Jan-13 7:16 
NewsFor help solving C + + 4.5 ((a numerical calendar date letters)) Pin
mrt-amin1-Jan-13 8:35
mrt-amin1-Jan-13 8:35 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
David Crow1-Jan-13 17:23
David Crow1-Jan-13 17:23 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
mrt-amin1-Jan-13 18:29
mrt-amin1-Jan-13 18:29 
QuestionRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
David Crow2-Jan-13 4:27
David Crow2-Jan-13 4:27 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
Richard MacCutchan1-Jan-13 22:22
mveRichard MacCutchan1-Jan-13 22:22 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
mrt-amin2-Jan-13 2:41
mrt-amin2-Jan-13 2:41 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
Richard MacCutchan2-Jan-13 4:25
mveRichard MacCutchan2-Jan-13 4:25 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
mrt-amin2-Jan-13 9:54
mrt-amin2-Jan-13 9:54 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
Richard MacCutchan2-Jan-13 10:06
mveRichard MacCutchan2-Jan-13 10:06 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
mrt-amin2-Jan-13 19:02
mrt-amin2-Jan-13 19:02 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
Richard MacCutchan2-Jan-13 22:02
mveRichard MacCutchan2-Jan-13 22:02 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
mrt-amin3-Jan-13 18:16
mrt-amin3-Jan-13 18:16 
QuestionEmpty String Pin
john563230-Dec-12 20:27
john563230-Dec-12 20:27 
AnswerRe: Empty String Pin
Richard MacCutchan30-Dec-12 22:22
mveRichard MacCutchan30-Dec-12 22:22 
AnswerRe: Empty String Pin
Chris Meech31-Dec-12 1:57
Chris Meech31-Dec-12 1:57 
AnswerRe: Empty String Pin
David Crow31-Dec-12 5:25
David Crow31-Dec-12 5:25 
AnswerRe: Empty String Pin
manem21k2-Jan-13 1:26
manem21k2-Jan-13 1:26 
GeneralRe: Empty String Pin
jeron12-Jan-13 4:21
jeron12-Jan-13 4:21 
manem21k wrote:

You can make sure like this:
 
CFile
file;
Char tempBuf[512];
file.Read(tempBuffer, 512);


Actually this will not work.

Char tempBuf[512]; <== wont compile there'e no Char data type
char tempBuf[512]; <== will compile

file.Read(tempBuffer, 512); <== wont compile, tempBuffer isn't declared
file.Read(tempBuf, 512); <== will compile

In other words see David's reply.

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.