Click here to Skip to main content
15,886,806 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
AnswerRe: how to clear view in SDI form Pin
Hamid_RT8-Sep-06 8:13
Hamid_RT8-Sep-06 8:13 
QuestionCreating a root CA certificate Pin
Stick^7-Sep-06 13:28
Stick^7-Sep-06 13:28 
QuestionLeft/Right mouse button on Control Pin
jsumm7-Sep-06 10:53
jsumm7-Sep-06 10:53 
AnswerRe: Left/Right mouse button on Control Pin
Jun Du7-Sep-06 13:42
Jun Du7-Sep-06 13:42 
AnswerRe: Left/Right mouse button on Control Pin
Hamid_RT8-Sep-06 8:12
Hamid_RT8-Sep-06 8:12 
QuestionHow to use WIA in VC 2005 Pin
tgchuhan7-Sep-06 9:55
tgchuhan7-Sep-06 9:55 
AnswerRe: How to use WIA in VC 2005 Pin
led mike7-Sep-06 10:21
led mike7-Sep-06 10:21 
GeneralRe: How to use WIA in VC 2005 Pin
tgchuhan8-Sep-06 2:22
tgchuhan8-Sep-06 2:22 
GeneralRe: How to use WIA in VC 2005 Pin
led mike8-Sep-06 4:37
led mike8-Sep-06 4:37 

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.