Click here to Skip to main content
15,892,537 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Why every object should contain hidden VPtr which points to VTable( which is static)? [modified] Pin
Rajkumar R7-Mar-08 22:54
Rajkumar R7-Mar-08 22:54 
QuestionAny way to always show horizontal scroll bar in CListCtrl? Pin
followait7-Mar-08 18:07
followait7-Mar-08 18:07 
Generalsyntex error in wchar.h and xlocale in vc++ Pin
Maninish7-Mar-08 17:55
Maninish7-Mar-08 17:55 
QuestionHow to use CDaoDatabase to open SQL server database? Pin
realtimeforme7-Mar-08 16:08
realtimeforme7-Mar-08 16:08 
AnswerRe: How to use CDaoDatabase to open SQL server database? Pin
ramana.g7-Mar-08 18:05
ramana.g7-Mar-08 18:05 
AnswerRe: How to use CDaoDatabase to open SQL server database? Pin
Hamid_RT9-Mar-08 0:56
Hamid_RT9-Mar-08 0:56 
GeneralGetting handle of hidden window from another process Pin
act_x7-Mar-08 8:30
act_x7-Mar-08 8:30 
GeneralRe: Getting handle of hidden window from another process Pin
Randor 7-Mar-08 8:51
professional Randor 7-Mar-08 8:51 
Something like this would work.

VOID YourClass::EnumerateWindows()
{
	EnumWindows(EnumWindowsProc,0);
}
BOOL CALLBACK EnumWindowsProc(HWND hWnd, LPARAM lParam)
{
	DWORD dwPID = 0;
	GetWindowThreadProcessId(hWnd,&dwPID);
	
	if(dwTargetPID == dwPID)
	{
		if (!(GetWindowLong(hWnd,GWL_STYLE) & WS_VISIBLE))
		{
			::PostMessage(hWnd,WM_CLOSE,0,0);
		}
	}

	return(TRUE);
}

GeneralRe: Getting handle of hidden window from another process Pin
Rajkumar R8-Mar-08 1:41
Rajkumar R8-Mar-08 1:41 
GeneralIcon in system tray Pin
RoyceF7-Mar-08 8:27
RoyceF7-Mar-08 8:27 
GeneralRe: Icon in system tray Pin
JudyL_MD7-Mar-08 9:29
JudyL_MD7-Mar-08 9:29 
GeneralRe: Icon in system tray Pin
Mark Salsbery7-Mar-08 13:07
Mark Salsbery7-Mar-08 13:07 
GeneralRe: Icon in system tray Pin
Royce Fickling7-Mar-08 16:09
Royce Fickling7-Mar-08 16:09 
GeneralRe: Icon in system tray Pin
Mark Salsbery8-Mar-08 8:10
Mark Salsbery8-Mar-08 8:10 
GeneralRe: Icon in system tray Pin
Royce Fickling8-Mar-08 13:11
Royce Fickling8-Mar-08 13:11 
GeneralRe: Icon in system tray Pin
Mark Salsbery8-Mar-08 13:23
Mark Salsbery8-Mar-08 13:23 
Generalquestion to the pros: nasty ASSERTION in BOOST Pin
andreas.schaerer7-Mar-08 7:54
andreas.schaerer7-Mar-08 7:54 
GeneralRe: question to the pros: nasty ASSERTION in BOOST Pin
Maxwell Chen7-Mar-08 8:11
Maxwell Chen7-Mar-08 8:11 
GeneralRe: question to the pros: nasty ASSERTION in BOOST Pin
Nemanja Trifunovic7-Mar-08 8:19
Nemanja Trifunovic7-Mar-08 8:19 
Generalavi file on Status bar Pin
ptr_Electron7-Mar-08 3:18
ptr_Electron7-Mar-08 3:18 
GeneralRe: avi file on Status bar Pin
toxcct7-Mar-08 3:38
toxcct7-Mar-08 3:38 
GeneralRe: avi file on Status bar Pin
ptr_Electron7-Mar-08 5:21
ptr_Electron7-Mar-08 5:21 
GeneralRe: avi file on Status bar Pin
super_ttd7-Mar-08 7:02
super_ttd7-Mar-08 7:02 
GeneralRe: avi file on Status bar Pin
led mike7-Mar-08 7:18
led mike7-Mar-08 7:18 
GeneralRe: avi file on Status bar Pin
Randor 7-Mar-08 7:08
professional Randor 7-Mar-08 7:08 

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.