Click here to Skip to main content
15,890,438 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Data string Parsing Pin
Naveen28-Feb-06 0:59
Naveen28-Feb-06 0:59 
AnswerRe: Data string Parsing Pin
mbue28-Feb-06 3:30
mbue28-Feb-06 3:30 
GeneralRe: Data string Parsing Pin
srija1-Mar-06 3:05
srija1-Mar-06 3:05 
Questiondoubt in connecting dialog to MDI Pin
mailsafe28-Feb-06 0:26
mailsafe28-Feb-06 0:26 
AnswerRe: doubt in connecting dialod to MDI Pin
David Crow28-Feb-06 2:45
David Crow28-Feb-06 2:45 
AnswerRe: doubt in connecting dialod to MDI Pin
mbue28-Feb-06 3:39
mbue28-Feb-06 3:39 
QuestionFocusless window - how to make that? Pin
midix28-Feb-06 0:13
midix28-Feb-06 0:13 
AnswerRe: Focusless window - how to make that? Pin
mbue28-Feb-06 0:22
mbue28-Feb-06 0:22 
On WM_WINDOWPOSCHANGING examine the WINDOWPOS* pointer in the LPARAM and set the flags member always on SWP_NOZORDER.

case WM_WINDOWPOSCHANGED:<br />
case WM_WINDOWPOSCHANGING:<br />
{<br />
  WINDOWPOS* wp=(WINDOWPOS*)lParam;<br />
  wp->flags |= SWP_NOZORDER;<br />
}<br />
break;

GeneralRe: Focusless window - how to make that? Pin
midix28-Feb-06 3:35
midix28-Feb-06 3:35 
GeneralRe: Focusless window - how to make that? Pin
mbue28-Feb-06 13:27
mbue28-Feb-06 13:27 
QuestionGutmann Algorithm Pin
rajeevktripathi27-Feb-06 23:41
rajeevktripathi27-Feb-06 23:41 
AnswerRe: Gutmann Algorithm Pin
Trollslayer28-Feb-06 22:54
mentorTrollslayer28-Feb-06 22:54 
QuestionEnvironment Variable Pin
Anil_vvs27-Feb-06 23:41
Anil_vvs27-Feb-06 23:41 
AnswerRe: Environment Variable Pin
toxcct27-Feb-06 23:46
toxcct27-Feb-06 23:46 
AnswerRe: Environment Variable Pin
mbue28-Feb-06 0:08
mbue28-Feb-06 0:08 
GeneralRe: Environment Variable Pin
toxcct28-Feb-06 0:10
toxcct28-Feb-06 0:10 
GeneralRe: Environment Variable Pin
Cedric Moonen28-Feb-06 0:39
Cedric Moonen28-Feb-06 0:39 
GeneralRe: Environment Variable Pin
toxcct28-Feb-06 0:42
toxcct28-Feb-06 0:42 
GeneralRe: Environment Variable Pin
Abebe28-Feb-06 2:34
Abebe28-Feb-06 2:34 
QuestionRe: Environment Variable Pin
David Crow28-Feb-06 2:49
David Crow28-Feb-06 2:49 
Questioni want to close a dialogbox with a button on it ... Pin
Mahhouraaaaaa27-Feb-06 23:37
Mahhouraaaaaa27-Feb-06 23:37 
AnswerRe: i want to close a dialogbox with a button on it ... Pin
toxcct27-Feb-06 23:44
toxcct27-Feb-06 23:44 
AnswerRe: i want to close a dialogbox with a button on it ... Pin
mbue28-Feb-06 0:06
mbue28-Feb-06 0:06 
GeneralRe: i want to close a dialogbox with a button on it ... Pin
toxcct28-Feb-06 0:10
toxcct28-Feb-06 0:10 
AnswerRe: i want to close a dialogbox with a button on it ... Pin
David Crow28-Feb-06 2:51
David Crow28-Feb-06 2:51 

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.