Click here to Skip to main content
16,005,682 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Query doesn't work in ExecuteSQL Pin
David Crow7-Dec-06 2:43
David Crow7-Dec-06 2:43 
GeneralRe: Query doesn't work in ExecuteSQL Pin
Mark Salsbery7-Dec-06 6:35
Mark Salsbery7-Dec-06 6:35 
QuestionCompilation Q Libraries and output size Pin
Like2Byte6-Dec-06 5:23
Like2Byte6-Dec-06 5:23 
AnswerRe: Compilation Q Libraries and output size [modified] Pin
Chris Losinger6-Dec-06 5:28
professionalChris Losinger6-Dec-06 5:28 
GeneralRe: Compilation Q Libraries and output size Pin
Like2Byte6-Dec-06 5:30
Like2Byte6-Dec-06 5:30 
Questionhow to convert char array to const byte array in C Pin
mmhu6-Dec-06 5:22
mmhu6-Dec-06 5:22 
AnswerRe: how to convert char array to const byte array in C Pin
toxcct6-Dec-06 5:28
toxcct6-Dec-06 5:28 
AnswerRe: how to convert char array to const byte array in C Pin
Like2Byte6-Dec-06 5:29
Like2Byte6-Dec-06 5:29 
lose the 'byte *'.

Calls should not contain thier datatype unless you are specifically casting it to that type and then you need to wrap the data type in parenthesis or angle brackets.

such that,

strcat(byte* dest, ":");

becomes,

strcat((byte*) dest, ":"); /*byte* is 'casted'*/

Otherwise, just plan ol' remove the byte* from your statement, resulting in:
strcat(dest, ":");

Ideally, you should ensure your datatypes are the same whereever possible.

QuestionHow to add help files into .EXE file Pin
Max++6-Dec-06 3:37
Max++6-Dec-06 3:37 
AnswerRe: How to add help files into .EXE file Pin
David Crow6-Dec-06 5:39
David Crow6-Dec-06 5:39 
AnswerRe: How to add help files into .EXE file Pin
S Douglas9-Dec-06 1:33
professionalS Douglas9-Dec-06 1:33 
QuestionWhat am I doing wrong? Pin
MyFathersSon6-Dec-06 3:30
MyFathersSon6-Dec-06 3:30 
AnswerRe: What am I doing wrong? Pin
Mark Salsbery6-Dec-06 6:26
Mark Salsbery6-Dec-06 6:26 
GeneralRe: What am I doing wrong? Pin
MyFathersSon6-Dec-06 8:47
MyFathersSon6-Dec-06 8:47 
GeneralRe: What am I doing wrong? Pin
Mark Salsbery6-Dec-06 9:16
Mark Salsbery6-Dec-06 9:16 
GeneralRe: What am I doing wrong? Pin
MyFathersSon8-Dec-06 5:44
MyFathersSon8-Dec-06 5:44 
Questionvsprintf and string. Pin
vikramlinux6-Dec-06 2:18
vikramlinux6-Dec-06 2:18 
AnswerRe: vsprintf and string. Pin
Nibu babu thomas6-Dec-06 2:27
Nibu babu thomas6-Dec-06 2:27 
GeneralRe: vsprintf and string. Pin
vikramlinux6-Dec-06 2:36
vikramlinux6-Dec-06 2:36 
Answeruse PRE tags Pin
toxcct6-Dec-06 2:32
toxcct6-Dec-06 2:32 
AnswerRe: vsprintf and string. Pin
prasad_som6-Dec-06 2:36
prasad_som6-Dec-06 2:36 
GeneralRe: vsprintf and string. Pin
vikramlinux6-Dec-06 2:39
vikramlinux6-Dec-06 2:39 
AnswerRe: vsprintf and string. Pin
prasad_som6-Dec-06 2:47
prasad_som6-Dec-06 2:47 
GeneralRe: vsprintf and string. Pin
Zac Howland6-Dec-06 3:29
Zac Howland6-Dec-06 3:29 
GeneralRe: vsprintf and string. Pin
David Crow6-Dec-06 5:27
David Crow6-Dec-06 5:27 

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.