Click here to Skip to main content
16,010,360 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Dynamic Matrix! (I am wrong) Pin
MAAK29-Jun-03 5:40
MAAK29-Jun-03 5:40 
Generalthe cheapest computer books Pin
chester16328-Jun-03 10:20
chester16328-Jun-03 10:20 
GeneralRe: the cheapest computer books - Beware SPAM Pin
Neville Franks28-Jun-03 11:49
Neville Franks28-Jun-03 11:49 
GeneralRe: the cheapest computer books Pin
Trollslayer28-Jun-03 12:01
mentorTrollslayer28-Jun-03 12:01 
GeneralRe: the cheapest computer books Pin
Toni7828-Jun-03 12:06
Toni7828-Jun-03 12:06 
GeneralTab order in win32 dialog Pin
Melekor28-Jun-03 9:02
Melekor28-Jun-03 9:02 
GeneralRe: Tab order in win32 dialog Pin
Michael Dunn28-Jun-03 9:49
sitebuilderMichael Dunn28-Jun-03 9:49 
GeneralRe: Tab order in win32 dialog Pin
Melekor28-Jun-03 10:21
Melekor28-Jun-03 10:21 
That sounds good, but I guess I don't know how to use it right because it's not working.

I created this

<br />
Inline void IncZOrder(HWND hWnd)<br />
{<br />
	static HWND LastWindowCreated = 0;<br />
	SetWindowPos(hWnd, LastWindowCreated, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);<br />
	LastWindowCreated = hWnd;<br />
}<br />


now after I create every control, I call that function with its hWnd but it doesn't work, I still can't tab between the controls. I'm pretty sure my message pump is correct to handle dialogs:
<br />
while(GetMessage(&msg, NULL, 0, 0) > 0)<br />
{<br />
	HWND ActiveWindow = GetActiveWindow();<br />
<br />
	if(!IsWindow(ActiveWindow) || !IsDialogMessage(ActiveWindow, &msg))<br />
	{<br />
		TranslateMessage(&msg);<br />
		DispatchMessage(&msg);<br />
	}<br />
}<br />

What else do I need to do?
Thanks!
GeneralRe: Tab order in win32 dialog Pin
Neville Franks28-Jun-03 11:51
Neville Franks28-Jun-03 11:51 
GeneralRe: Tab order in win32 dialog Pin
Melekor28-Jun-03 13:38
Melekor28-Jun-03 13:38 
GeneralPrinting in an Area Problem -- Need Help! Pin
Larry J. Siddens28-Jun-03 8:07
Larry J. Siddens28-Jun-03 8:07 
QuestionResource folder? Pin
DaveE9th28-Jun-03 8:05
DaveE9th28-Jun-03 8:05 
GeneralPassing message to thread Pin
Samrah Saulat Mirza28-Jun-03 5:51
Samrah Saulat Mirza28-Jun-03 5:51 
GeneralRe: Passing message to thread Pin
Nitron28-Jun-03 6:02
Nitron28-Jun-03 6:02 
GeneralRe: Passing message to thread Pin
Shah Shehpori28-Jun-03 6:56
sussShah Shehpori28-Jun-03 6:56 
GeneralRe: Passing message to thread Pin
valikac28-Jun-03 6:53
valikac28-Jun-03 6:53 
GeneralRe: Passing message to thread Pin
Shah Shehpori28-Jun-03 6:59
sussShah Shehpori28-Jun-03 6:59 
GeneralRe: Passing message to thread Pin
valikac28-Jun-03 7:46
valikac28-Jun-03 7:46 
GeneralRe: Passing message to thread Pin
Peter Weyzen28-Jun-03 17:26
Peter Weyzen28-Jun-03 17:26 
GeneralRe: Passing message to thread Pin
cmk28-Jun-03 18:11
cmk28-Jun-03 18:11 
QuestionHow to set the position of a progress bar Pin
FlyingDancer28-Jun-03 3:54
FlyingDancer28-Jun-03 3:54 
AnswerRe: How to set the position of a progress bar Pin
Michael Dunn28-Jun-03 5:20
sitebuilderMichael Dunn28-Jun-03 5:20 
GeneralRe: How to set the position of a progress bar Pin
FlyingDancer29-Jun-03 15:35
FlyingDancer29-Jun-03 15:35 
GeneralRe: How to set the position of a progress bar Pin
FlyingDancer29-Jun-03 18:37
FlyingDancer29-Jun-03 18:37 
Questionhow to play *.ani file in MFC? Pin
dxhdxh28-Jun-03 2:44
dxhdxh28-Jun-03 2:44 

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.