Click here to Skip to main content
15,889,281 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: read/ write to screen/ file Pin
normanS24-Jul-06 19:25
normanS24-Jul-06 19:25 
QuestionHow to hide process from being watched Pin
kflrei24-Jul-06 0:02
kflrei24-Jul-06 0:02 
AnswerRe: How to hide process from being watched Pin
Programm3r24-Jul-06 0:11
Programm3r24-Jul-06 0:11 
AnswerRe: How to hide process from being watched Pin
Programm3r24-Jul-06 0:17
Programm3r24-Jul-06 0:17 
QuestionIPC -- is it reliable ??? Pin
TamirC23-Jul-06 23:53
TamirC23-Jul-06 23:53 
AnswerRe: IPC -- is it reliable ??? Pin
ThatsAlok24-Jul-06 0:02
ThatsAlok24-Jul-06 0:02 
QuestionOnKillFocus() Pin
Taruni23-Jul-06 23:26
Taruni23-Jul-06 23:26 
AnswerRe: OnKillFocus() Pin
prasad_som24-Jul-06 1:53
prasad_som24-Jul-06 1:53 
Probably its working correct.
Instead of message box, use some other method. Like writing message to a file.
B'coz invokation of message box will coz loosing focus of second edit box.
Try following code in killfocus handlers of respective edit boxes
FILE *fp=NULL;
fp=fopen("test.txt","a+");
char ch[]="OnKillfocusEdit1";
fwrite(ch,1,sizeof(ch),fp);
fclose(fp);



AnswerRe: OnKillFocus() Pin
David Crow24-Jul-06 3:21
David Crow24-Jul-06 3:21 
QuestionGetting folder names Pin
ashokvishnu23-Jul-06 23:26
ashokvishnu23-Jul-06 23:26 
AnswerRe: Getting folder names Pin
Don Box23-Jul-06 23:35
Don Box23-Jul-06 23:35 
AnswerRe: Getting folder names Pin
toxcct23-Jul-06 23:46
toxcct23-Jul-06 23:46 
AnswerRe: Getting folder names Pin
ThatsAlok24-Jul-06 0:00
ThatsAlok24-Jul-06 0:00 
QuestionRe: Getting folder names Pin
David Crow24-Jul-06 3:25
David Crow24-Jul-06 3:25 
QuestionHow to create Toolbar by using resources Pin
johnalek23-Jul-06 22:41
johnalek23-Jul-06 22:41 
AnswerRe: How to create Toolbar by using resources Pin
toxcct23-Jul-06 22:54
toxcct23-Jul-06 22:54 
GeneralRe: How to create Toolbar by using resources Pin
toxcct23-Jul-06 23:00
toxcct23-Jul-06 23:00 
GeneralRe: How to create Toolbar by using resources Pin
Hamid_RT23-Jul-06 23:22
Hamid_RT23-Jul-06 23:22 
GeneralRe: How to create Toolbar by using resources Pin
toxcct23-Jul-06 23:24
toxcct23-Jul-06 23:24 
GeneralRe: How to create Toolbar by using resources Pin
Hamid_RT23-Jul-06 23:41
Hamid_RT23-Jul-06 23:41 
GeneralRe: How to create Toolbar by using resources Pin
ThatsAlok24-Jul-06 0:02
ThatsAlok24-Jul-06 0:02 
GeneralRe: How to create Toolbar by using resources Pin
toxcct24-Jul-06 0:13
toxcct24-Jul-06 0:13 
GeneralRe: How to create Toolbar by using resources Pin
ThatsAlok24-Jul-06 0:19
ThatsAlok24-Jul-06 0:19 
AnswerRe: How to create Toolbar by using resources Pin
Hamid_RT23-Jul-06 23:05
Hamid_RT23-Jul-06 23:05 
QuestionHow to create a Property Sheet Application Pin
ashwath200523-Jul-06 21:28
ashwath200523-Jul-06 21:28 

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.