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

C / C++ / MFC

 
GeneralRe: SendMessage - return value - please translate MS to English for me. [modified] SOLVED Pin
Tim Craig1-Apr-10 9:31
Tim Craig1-Apr-10 9:31 
GeneralRe: SendMessage - return value - please translate MS to English for me. [modified] SOLVED Pin
CPallini1-Apr-10 9:42
mveCPallini1-Apr-10 9:42 
QuestionMonitoring//logging memory and cpu usage Pin
Alan Kurlansky30-Mar-10 4:21
Alan Kurlansky30-Mar-10 4:21 
AnswerRe: Monitoring//logging memory and cpu usage Pin
Adam Roderick J30-Mar-10 5:04
Adam Roderick J30-Mar-10 5:04 
AnswerRe: Monitoring//logging memory and cpu usage Pin
David Crow30-Mar-10 5:48
David Crow30-Mar-10 5:48 
QuestionHow to getting StackFrame at compile time from PDB Pin
glitteringsound30-Mar-10 2:35
glitteringsound30-Mar-10 2:35 
AnswerRe: How to getting StackFrame at compile time from PDB Pin
Randor 30-Mar-10 4:06
professional Randor 30-Mar-10 4:06 
QuestionTaskbar is hooked Pin
Cvaji30-Mar-10 2:02
Cvaji30-Mar-10 2:02 
I have hooked taskbar. Below code is the new window procedure for task bar.
But when I tried to send message with valid m_hDlgWnd of my application window. But it is not working.Confused | :confused:
Is it not possible to send message from this task bar window procedure?

LRESULT CALLBACK NewProc(
  HWND hwnd,      // handle to window
  UINT uMsg,      // message identifier
  WPARAM wParam,  // first message parameter
  LPARAM lParam   // second message parameter
)
{
	switch (uMsg) 
	{
          case WM_PAINT: 
            ::SendMessage( m_hDlgWnd, WM_TASKBAR_UPDATED_EVENT,0,0 );// NOT WORKING
            ::SetEvent( m_hTaskBarUpdatedEvent ); // NOT WORKING
            ::MessageBeep( MB_OK );
             break;
	}
	
	return CallWindowProc( OldProc,hwnd,uMsg,wParam,lParam );
}


-Cvaji
AnswerRe: Taskbar is hooked Pin
Cvaji30-Mar-10 2:35
Cvaji30-Mar-10 2:35 
GeneralRe: Taskbar is hooked [modified] Pin
Code-o-mat30-Mar-10 5:59
Code-o-mat30-Mar-10 5:59 
GeneralRe: Taskbar is hooked Pin
Cvaji30-Mar-10 18:28
Cvaji30-Mar-10 18:28 
Questionhelp me plase in program array in c++ Pin
noor qudah29-Mar-10 23:40
noor qudah29-Mar-10 23:40 
AnswerRe: help me plase in program array in c++ Pin
LittleYellowBird29-Mar-10 23:59
LittleYellowBird29-Mar-10 23:59 
AnswerRe: help me plase in program array in c++ Pin
Adam Roderick J30-Mar-10 0:18
Adam Roderick J30-Mar-10 0:18 
GeneralRe: help me plase in program array in c++ Pin
noor qudah31-Mar-10 0:18
noor qudah31-Mar-10 0:18 
AnswerRe: help me plase in program array in c++ Pin
Game-point30-Mar-10 1:17
Game-point30-Mar-10 1:17 
AnswerRe: help me plase in program array in c++ Pin
David Crow30-Mar-10 2:43
David Crow30-Mar-10 2:43 
AnswerRe: help me plase in program array in c++ Pin
Chris Losinger30-Mar-10 7:15
professionalChris Losinger30-Mar-10 7:15 
Questionerror LNK 2001 in visual C++ 6.0 Pin
sindhumahe29-Mar-10 23:00
sindhumahe29-Mar-10 23:00 
AnswerRe: error LNK 2001 in visual C++ 6.0 Pin
Eugen Podsypalnikov29-Mar-10 23:08
Eugen Podsypalnikov29-Mar-10 23:08 
GeneralRe: error LNK 2001 in visual C++ 6.0 Pin
sindhumahe29-Mar-10 23:11
sindhumahe29-Mar-10 23:11 
GeneralRe: error LNK 2001 in visual C++ 6.0 Pin
sindhumahe29-Mar-10 23:21
sindhumahe29-Mar-10 23:21 
GeneralRe: error LNK 2001 in visual C++ 6.0 Pin
Eugen Podsypalnikov29-Mar-10 23:25
Eugen Podsypalnikov29-Mar-10 23:25 
GeneralRe: error LNK 2001 in visual C++ 6.0 Pin
sindhumahe29-Mar-10 23:31
sindhumahe29-Mar-10 23:31 
GeneralRe: error LNK 2001 in visual C++ 6.0 Pin
Eugen Podsypalnikov29-Mar-10 23:34
Eugen Podsypalnikov29-Mar-10 23:34 

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.