Click here to Skip to main content
15,922,155 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: sorry..it says that the specified file is not found Pin
James R. Twine21-Dec-06 2:31
James R. Twine21-Dec-06 2:31 
GeneralRe: unable to run explorer from a custom desktop created in winsta0 Pin
James R. Twine21-Dec-06 2:33
James R. Twine21-Dec-06 2:33 
GeneralRe: unable to run explorer from a custom desktop created in winsta0 Pin
SelvaKr21-Dec-06 3:04
SelvaKr21-Dec-06 3:04 
QuestionWindows Vista IE 7.0 in protected mode does not respond to WM_COMMAND Pin
shivditya20-Dec-06 23:59
shivditya20-Dec-06 23:59 
AnswerRe: Windows Vista IE 7.0 in protected mode does not respond to WM_COMMAND Pin
messages21-Dec-06 21:12
messages21-Dec-06 21:12 
Question__FUNCTION__ Pin
Neela Reddy20-Dec-06 23:54
Neela Reddy20-Dec-06 23:54 
AnswerRe: __FUNCTION__ Pin
benjymous21-Dec-06 1:49
benjymous21-Dec-06 1:49 
AnswerRe: __FUNCTION__ Pin
Gary R. Wheeler21-Dec-06 11:28
Gary R. Wheeler21-Dec-06 11:28 
__FUNCTION__ is a special #define created for you by the compiler. Unless the compiler provides it, there's no way for you to code it, unless you do the following at the start of each function:
void API::Function1()
#undef  __FUNCTION__
#define __FUNCTION__ API::Function1
{
//...
}

void API::Function2()
#undef  __FUNCTION__
#define __FUNCTION__ API::Function2
{
//...
}

void API::Function3()
#undef  __FUNCTION__
#define __FUNCTION__ API::Function3
{
//...
}
which would get really, really old, really, really fast.


Software Zen: delete this;

AnswerRe: Basic of VC++ Pin
Hamid_RT21-Dec-06 1:40
Hamid_RT21-Dec-06 1:40 
Questionstrstr() Pin
Programm3r20-Dec-06 22:28
Programm3r20-Dec-06 22:28 
AnswerRe: strstr() Pin
Programm3r20-Dec-06 22:32
Programm3r20-Dec-06 22:32 
AnswerRe: strstr() Pin
Naveen20-Dec-06 22:40
Naveen20-Dec-06 22:40 
AnswerRe: strstr() Pin
David Crow21-Dec-06 3:32
David Crow21-Dec-06 3:32 
QuestionCFile open and create file Pin
ashokvishnu20-Dec-06 22:27
ashokvishnu20-Dec-06 22:27 
QuestionRe: CFile open and create file Pin
prasad_som20-Dec-06 23:27
prasad_som20-Dec-06 23:27 
AnswerRe: CFile open and create file Pin
ashokvishnu20-Dec-06 23:44
ashokvishnu20-Dec-06 23:44 
GeneralRe: CFile open and create file Pin
CPallini21-Dec-06 0:44
mveCPallini21-Dec-06 0:44 
GeneralRe: prevent renaming an exe when it is running in windows Pin
nutkase20-Dec-06 22:17
nutkase20-Dec-06 22:17 
QuestionChanging default speaker configuration on Vista Pin
pvn g20-Dec-06 22:02
pvn g20-Dec-06 22:02 
AnswerRe: Changing default speaker configuration on Vista Pin
Hadi Dayvary20-Dec-06 22:16
professionalHadi Dayvary20-Dec-06 22:16 
QuestionGet the year... Pin
Programm3r20-Dec-06 21:39
Programm3r20-Dec-06 21:39 
AnswerRe: Get the year... Pin
prasad_som20-Dec-06 21:44
prasad_som20-Dec-06 21:44 
AnswerRe: Get the year... Pin
_AnsHUMAN_ 20-Dec-06 21:45
_AnsHUMAN_ 20-Dec-06 21:45 
AnswerRe: Get the year... Pin
Naveen20-Dec-06 21:45
Naveen20-Dec-06 21:45 
AnswerRe: Get the year... Pin
CPallini20-Dec-06 21:48
mveCPallini20-Dec-06 21:48 

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.