Click here to Skip to main content
15,898,371 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Keeping window within boundry, win32 sdk Pin
Nibu babu thomas21-Sep-06 18:36
Nibu babu thomas21-Sep-06 18:36 
GeneralRe: Keeping window within boundry, win32 sdk Pin
beeejay21-Sep-06 18:47
beeejay21-Sep-06 18:47 
GeneralRe: Keeping window within boundry, win32 sdk Pin
Nibu babu thomas21-Sep-06 19:03
Nibu babu thomas21-Sep-06 19:03 
QuestionComposite Control Info Pin
Demian Panello21-Sep-06 16:14
Demian Panello21-Sep-06 16:14 
AnswerRe: Composite Control Info Pin
Rick York21-Sep-06 16:45
mveRick York21-Sep-06 16:45 
AnswerRe: Composite Control Info Pin
Hamid_RT21-Sep-06 18:41
Hamid_RT21-Sep-06 18:41 
QuestionWarning messages Pin
dacky21-Sep-06 15:36
dacky21-Sep-06 15:36 
AnswerRe: Warning messages Pin
Stephen Hewitt21-Sep-06 16:03
Stephen Hewitt21-Sep-06 16:03 
It means that the parameter "nFaceRecNo" isn't used in the function. The best way to get rid of this warning is as follows:
// Code with warning.
void Foo(int n)
{
    // We don't use 'n'.
}
 
// Code without warning.
void Foo(int)
{
}


Note that in the code without the warning I've removed any parameters which I don't use in the function from the function definition. It can still be present in the declaration. There are other ways of resolving this problem but this is how I normally deal with it.

Steve

GeneralRe: Warning messages Pin
dacky21-Sep-06 16:13
dacky21-Sep-06 16:13 
QuestionMoving VC7 app to VC8 Pin
paulb21-Sep-06 12:46
paulb21-Sep-06 12:46 
AnswerRe: Moving VC7 app to VC8 Pin
Christian Graus21-Sep-06 12:52
protectorChristian Graus21-Sep-06 12:52 
Questionweb application in vc++.net Pin
sandeep_thakur21-Sep-06 11:05
sandeep_thakur21-Sep-06 11:05 
AnswerRe: web application in vc++.net Pin
Christian Graus21-Sep-06 11:34
protectorChristian Graus21-Sep-06 11:34 
Questionhow to prevent a file from being opened? Pin
sundar15621-Sep-06 10:58
sundar15621-Sep-06 10:58 
AnswerRe: how to prevent a file from being opened? Pin
Christian Graus21-Sep-06 11:36
protectorChristian Graus21-Sep-06 11:36 
GeneralRe: how to prevent a file from being opened? Pin
sundar15621-Sep-06 12:13
sundar15621-Sep-06 12:13 
QuestionDatabase connectivity Pin
sandeep_thakur21-Sep-06 10:48
sandeep_thakur21-Sep-06 10:48 
AnswerRe: Database connectivity Pin
Hamid_RT28-Sep-06 10:04
Hamid_RT28-Sep-06 10:04 
QuestionCould anyone help me try this example code Pin
bloodwinner21-Sep-06 10:41
bloodwinner21-Sep-06 10:41 
AnswerRe: Could anyone help me try this example code Pin
David Crow21-Sep-06 10:48
David Crow21-Sep-06 10:48 
AnswerRe: Could anyone help me try this example code Pin
bloodwinner21-Sep-06 11:00
bloodwinner21-Sep-06 11:00 
AnswerRe: Could anyone help me try this example code Pin
Hamid_RT21-Sep-06 18:29
Hamid_RT21-Sep-06 18:29 
QuestionWhat is wrong with this file? Pin
Lord Kixdemp21-Sep-06 10:37
Lord Kixdemp21-Sep-06 10:37 
AnswerRe: What is wrong with this file? (It's going down now) Pin
Lord Kixdemp21-Sep-06 11:09
Lord Kixdemp21-Sep-06 11:09 
QuestionVisual C++ Express Edition Pin
su_penguin21-Sep-06 9:58
su_penguin21-Sep-06 9:58 

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.