Click here to Skip to main content
15,886,873 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Putting values in array Pin
Maximilien6-Dec-07 3:10
Maximilien6-Dec-07 3:10 
GeneralGetting code page descriptions... Pin
Haroon Sarwar6-Dec-07 1:24
Haroon Sarwar6-Dec-07 1:24 
GeneralRe: Getting code page descriptions... Pin
Nibu babu thomas6-Dec-07 2:27
Nibu babu thomas6-Dec-07 2:27 
GeneralRe: Getting code page descriptions... Pin
Haroon Sarwar6-Dec-07 17:17
Haroon Sarwar6-Dec-07 17:17 
QuestionHow to copy a file from pocket PC to destktop Pin
ni_yuansheng6-Dec-07 0:09
ni_yuansheng6-Dec-07 0:09 
QuestionRe: How to copy a file from pocket PC to destktop Pin
David Crow6-Dec-07 2:47
David Crow6-Dec-07 2:47 
QuestionHow to know through INF file that perticular model is PNP enable. Pin
dubbele onzin6-Dec-07 0:02
dubbele onzin6-Dec-07 0:02 
QuestionHow to find Child Window of another Application? Pin
narayanagvs5-Dec-07 23:50
narayanagvs5-Dec-07 23:50 
Hi,

I need to get a handle to the "Save As" Dialog of another
application once the user Clicks "Save As" Option in that
application.So as to kill the dialog Immediately.

I used FindWindowEx and EnumChildWindows but no use.
Using Spy++ I tried to get the class name of the "Save As"
Dialog it shows "#32770 (Dialog)" as is for any dialog box.

HWND hWnd = ::FindWindowEx(st_hwnd,NULL,
(LPCWSTR)"#32770 (Dialog)",(LPCWSTR)"Save As");


Even if "Save As" Dialog is not the immediate child window
for FindWindowEx to work,it should work with
EnumChildWindows,but doesn't.

HWND hWndChild = NULL;
EnumChildWindows(pWndWmp->m_hWnd, EnumAppearanceChildProc, (LPARAM)&hWndChild);		

BOOL CALLBACK EnumAppearanceChildProc(HWND hwnd, LPARAM lParam)
{									
        CString str = _T("");
	CWnd *pChildWnd = CWnd::FromHandle(hwnd);
	pChildWnd->GetWindowTextW(str);			
	if(_tcscmp(str,_T("Save")) == 0)	
	{					
		*reinterpret_cast<hwnd*>(lParam) = hwnd;	
		return FALSE;	
	}		
	return TRUE;
}</hwnd*>

What could be the problem? Is there a way where I can
get the handle to the "Save As" dialog of another application?

Thanks
Satya

Today is a gift, that's why it is called the present.

QuestionHow to change the background of the slider control Pin
yaminisridaran5-Dec-07 23:23
yaminisridaran5-Dec-07 23:23 
AnswerRe: How to change the background of the slider control Pin
Naveen6-Dec-07 2:10
Naveen6-Dec-07 2:10 
GeneralDrag in CListCtrl, the dragging image doesn't cover the orignal image wholely when start dragging [modified] Pin
followait5-Dec-07 23:21
followait5-Dec-07 23:21 
GeneralAccess a remote hard disk. Pin
vijay_aroli5-Dec-07 22:52
vijay_aroli5-Dec-07 22:52 
QuestionGet events via CWMPPlayer4 Pin
sleepfox5-Dec-07 22:48
sleepfox5-Dec-07 22:48 
AnswerRe: Get events via CWMPPlayer4 Pin
zandar the great29-Sep-08 10:01
zandar the great29-Sep-08 10:01 
GeneralWhere to submit C++ Games Pin
Vince Rojas5-Dec-07 22:30
Vince Rojas5-Dec-07 22:30 
GeneralRe: Where to submit C++ Games Pin
toxcct5-Dec-07 22:33
toxcct5-Dec-07 22:33 
GeneralRe: Where to submit C++ Games Pin
Vince Rojas5-Dec-07 22:36
Vince Rojas5-Dec-07 22:36 
GeneralRe: Where to submit C++ Games Pin
toxcct5-Dec-07 22:39
toxcct5-Dec-07 22:39 
GeneralRe: Where to submit C++ Games Pin
Vince Rojas5-Dec-07 22:44
Vince Rojas5-Dec-07 22:44 
GeneralRe: Where to submit C++ Games Pin
toxcct5-Dec-07 22:47
toxcct5-Dec-07 22:47 
GeneralRe: Where to submit C++ Games [modified] Pin
Nelek5-Dec-07 23:02
protectorNelek5-Dec-07 23:02 
GeneralRe: Where to submit C++ Games Pin
ThatsAlok6-Dec-07 0:21
ThatsAlok6-Dec-07 0:21 
GeneralRe: Where to submit C++ Games Pin
Cedric Moonen6-Dec-07 0:00
Cedric Moonen6-Dec-07 0:00 
GeneralThanks Pin
Vince Rojas6-Dec-07 15:42
Vince Rojas6-Dec-07 15:42 
GeneralRe: Thanks Pin
ThatsAlok6-Dec-07 20:17
ThatsAlok6-Dec-07 20:17 

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.