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

C / C++ / MFC

 
AnswerRe: how to aoutomaticaly call a function at the time of start the application. Pin
bosfan7-Sep-06 21:37
bosfan7-Sep-06 21:37 
GeneralRe: how to aoutomaticaly call a function at the time of start the application. Pin
Cedric Moonen8-Sep-06 4:14
Cedric Moonen8-Sep-06 4:14 
GeneralRe: how to aoutomaticaly call a function at the time of start the application. Pin
David Crow8-Sep-06 4:21
David Crow8-Sep-06 4:21 
AnswerRe: how to aoutomaticaly call a function at the time of start the application. Pin
Arman S.7-Sep-06 21:12
Arman S.7-Sep-06 21:12 
Questionunable to execute .Net 2005 executable in Test PC Pin
K. narasimharao7-Sep-06 20:43
K. narasimharao7-Sep-06 20:43 
AnswerRe: unable to execute .Net 2005 executable in Test PC Pin
Marc Soleda7-Sep-06 22:33
Marc Soleda7-Sep-06 22:33 
QuestionSecurity Attributes Pin
Arman S.7-Sep-06 20:41
Arman S.7-Sep-06 20:41 
QuestionPropertySheet & Dialog? Pin
Divyang Mithaiwala7-Sep-06 20:16
Divyang Mithaiwala7-Sep-06 20:16 
AnswerRe: PropertySheet & Dialog? Pin
David Crow8-Sep-06 4:22
David Crow8-Sep-06 4:22 
Questionproblem in executing .net 2005 exe in .net 2003 environment Pin
Jyothi_9127-Sep-06 19:59
Jyothi_9127-Sep-06 19:59 
AnswerRe: problem in executing .net 2005 exe in .net 2003 environment Pin
prasad_som7-Sep-06 20:05
prasad_som7-Sep-06 20:05 
GeneralRe: problem in executing .net 2005 exe in .net 2003 environment Pin
Jyothi_9127-Sep-06 20:38
Jyothi_9127-Sep-06 20:38 
AnswerRe: problem in executing .net 2005 exe in .net 2003 environment Pin
prasad_som7-Sep-06 21:33
prasad_som7-Sep-06 21:33 
QuestionTransperent Bitmaps Pin
mpk19797-Sep-06 19:40
mpk19797-Sep-06 19:40 
AnswerRe: Transperent Bitmaps Pin
Hamid_RT7-Sep-06 19:49
Hamid_RT7-Sep-06 19:49 
QuestionCheck Files in used Pin
thangnvhl7-Sep-06 17:45
thangnvhl7-Sep-06 17:45 
AnswerRe: Check Files in used Pin
aldo hexosa7-Sep-06 18:38
professionalaldo hexosa7-Sep-06 18:38 
may be:
HANDLE hFile = CreateFile("test.txt",GENERIC_WRITE,FILE_SHARE_READ,NULL,OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL ,NULL);
if(hFile == INVALID_HANDLE_VALUE){
if(GetLastError() == 5 || GetLastError() == 4)
{
//this file is being used
}
}else
{
CloseHandle(hFile);
}
QuestionRe: Check Files in used Pin
David Crow8-Sep-06 4:25
David Crow8-Sep-06 4:25 
AnswerRe: Check Files in used Pin
Renjith Ramachandran7-Sep-06 20:44
Renjith Ramachandran7-Sep-06 20:44 
QuestionHow to delete a file after user close it Pin
rockryan7-Sep-06 17:39
rockryan7-Sep-06 17:39 
AnswerRe: How to delete a file after user close it Pin
Rinu_Raj7-Sep-06 17:50
Rinu_Raj7-Sep-06 17:50 
AnswerRe: How to delete a file after user close it Pin
Waldermort7-Sep-06 18:29
Waldermort7-Sep-06 18:29 
Questionhow to clear view in SDI form Pin
aldo hexosa7-Sep-06 17:33
professionalaldo hexosa7-Sep-06 17:33 
QuestionRe: how to clear view in SDI form Pin
prasad_som7-Sep-06 19:05
prasad_som7-Sep-06 19:05 
AnswerRe: how to clear view in SDI form Pin
Arman S.7-Sep-06 20:44
Arman S.7-Sep-06 20:44 

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.