Click here to Skip to main content
15,903,203 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: focus window Pin
rushiraj.jhala20-Feb-07 23:05
rushiraj.jhala20-Feb-07 23:05 
Question"how to add Html help " Pin
harsh_296120-Feb-07 22:35
harsh_296120-Feb-07 22:35 
AnswerRe: how to add Html help Pin
Hamid_RT20-Feb-07 23:46
Hamid_RT20-Feb-07 23:46 
AnswerRe: "how to add Html help " Pin
Mark Salsbery21-Feb-07 8:36
Mark Salsbery21-Feb-07 8:36 
Question"Changing Statusbar color " Pin
harsh_296120-Feb-07 22:30
harsh_296120-Feb-07 22:30 
AnswerRe: "Changing Statusbar color " Pin
ThatsAlok21-Feb-07 6:02
ThatsAlok21-Feb-07 6:02 
QuestionHow to block a user shutdown or logoff? Pin
ShaluMalu20-Feb-07 22:27
ShaluMalu20-Feb-07 22:27 
AnswerRe: How to block a user shutdown or logoff? Pin
prasad_som20-Feb-07 22:35
prasad_som20-Feb-07 22:35 
Handle WM_QUERYENDSESSION message is your application. return FALSE to stop the shutdown of logoff process.
if (message == WM_QUERYENDSESSION)  
{
if(allow)
{
return TRUE;
} 
else
{
return FALSE;
}
}



AnswerRe: How to block a user shutdown or logoff? Pin
Naveen20-Feb-07 22:39
Naveen20-Feb-07 22:39 
AnswerRe: How to block a user shutdown or logoff? Pin
ThatsAlok21-Feb-07 6:03
ThatsAlok21-Feb-07 6:03 
Questionclicking button programmatically using SendDlgItemMessage() Pin
rp_suman20-Feb-07 21:43
rp_suman20-Feb-07 21:43 
AnswerRe: clicking button programmatically using SendDlgItemMessage() Pin
prasad_som20-Feb-07 22:21
prasad_som20-Feb-07 22:21 
GeneralRe: clicking button programmatically using SendDlgItemMessage() Pin
ThatsAlok21-Feb-07 6:04
ThatsAlok21-Feb-07 6:04 
AnswerRe: clicking button programmatically using SendDlgItemMessage() Pin
prasad_som21-Feb-07 17:03
prasad_som21-Feb-07 17:03 
GeneralRe: clicking button programmatically using SendDlgItemMessage() Pin
ThatsAlok21-Feb-07 18:45
ThatsAlok21-Feb-07 18:45 
GeneralRe: clicking button programmatically using SendDlgItemMessage() Pin
Try21-Feb-07 17:25
Try21-Feb-07 17:25 
Questionhtml entity to unicode Pin
micutzu20-Feb-07 21:35
micutzu20-Feb-07 21:35 
AnswerRe: html entity to unicode Pin
Naveen20-Feb-07 22:34
Naveen20-Feb-07 22:34 
GeneralRe: html entity to unicode Pin
micutzu20-Feb-07 22:39
micutzu20-Feb-07 22:39 
GeneralRe: html entity to unicode Pin
Naveen21-Feb-07 1:18
Naveen21-Feb-07 1:18 
Questionfile find problem Pin
david bagaturia20-Feb-07 21:18
david bagaturia20-Feb-07 21:18 
AnswerRe: file find problem Pin
Cedric Moonen20-Feb-07 21:39
Cedric Moonen20-Feb-07 21:39 
GeneralRe: file find problem Pin
david bagaturia20-Feb-07 21:50
david bagaturia20-Feb-07 21:50 
GeneralRe: file find problem Pin
Cedric Moonen20-Feb-07 21:57
Cedric Moonen20-Feb-07 21:57 
GeneralRe: file find problem Pin
david bagaturia20-Feb-07 22:09
david bagaturia20-Feb-07 22:09 

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.