The MASM Forum

General => The Workshop => Windows API => Topic started by: jj2007 on December 06, 2022, 09:42:22 AM

Title: MessageBox changes the focus from edit control to main window
Post by: jj2007 on December 06, 2022, 09:42:22 AM
I can't remember having seen that documented anywhere, but on Win7-64 at least, it's true. And it's a major nuisance :sad:

Testbed attached, pure Masm32 SDK code.
Title: Re: MessageBox changes the focus from edit control to main window
Post by: hutch-- on December 06, 2022, 04:28:34 PM

      .case WM_SETFOCUS
        invoke SetFocus,hEdit
Title: Re: MessageBox changes the focus from edit control to main window
Post by: jj2007 on December 06, 2022, 08:53:37 PM
Quote from: hutch-- on December 06, 2022, 04:28:34 PM

      .case WM_SETFOCUS
        invoke SetFocus,hEdit

That works fine :thumbsup:

(as long as you have only one edit control)
Title: Re: MessageBox changes the focus from edit control to main window
Post by: hutch-- on December 06, 2022, 10:55:10 PM
At least you can pick which one via the handle. If you have multiple edit windows, you would need a mechanism to switch the handles to the one you are using at the time.
Title: Re: MessageBox changes the focus from edit control to main window
Post by: HSE on December 06, 2022, 11:04:17 PM
You can subclass all edits, and store the handle in a global variable (lastEdit) when they receive WM_SETFOCUS.  :thumbsup:
Title: Re: MessageBox changes the focus from edit control to main window
Post by: TimoVJL on December 06, 2022, 11:38:14 PM
WM_KILLFOCUS message

https://learn.microsoft.com/en-us/windows/win32/inputdev/wm-killfocus (https://learn.microsoft.com/en-us/windows/win32/inputdev/wm-killfocus)
Title: Re: MessageBox changes the focus from edit control to main window
Post by: jj2007 on December 06, 2022, 11:50:17 PM
Quote from: HSE on December 06, 2022, 11:04:17 PM
You can subclass all edits, and store the handle in a global variable (lastEdit) when they receive WM_SETFOCUS.  :thumbsup:

Interesting idea, thanks, but I've already implemented a more straightforward mechanism in the Santa Claus edition (http://masm32.com/board/index.php?topic=94.0) :winking:

(http://www.jj2007.eu/pics/MsgBoxKeepFocus.png)
Title: Re: MessageBox changes the focus from edit control to main window
Post by: HSE on December 07, 2022, 12:05:51 AM
Quote from: jj2007 on December 06, 2022, 11:50:17 PM
I've already implemented a more straightforward mechanism

:thumbsup: but that can return focus in other controls.
Title: Re: MessageBox changes the focus from edit control to main window
Post by: jj2007 on December 07, 2022, 12:06:57 AM
Quote from: HSE on December 07, 2022, 12:05:51 AM
:thumbsup: but that can return focus in other controls.

How that?
Title: Re: MessageBox changes the focus from edit control to main window
Post by: HSE on December 07, 2022, 01:50:55 AM
      :biggrin: :biggrin: :biggrin:

Quote from: jj2007 on December 07, 2022, 12:06:57 AM
How that?

Quote from: jj2007 on December 06, 2022, 11:23:31 AM
Your lack of imagination is deplorable :biggrin:
Title: Re: MessageBox changes the focus from edit control to main window
Post by: zedd151 on December 07, 2022, 03:52:41 AM
Quote from: HSE on December 07, 2022, 01:50:55 AM
      :biggrin: :biggrin: :biggrin:
:greensml:  I knew I read that somewhere else.
Title: Re: MessageBox changes the focus from edit control to main window
Post by: jj2007 on December 07, 2022, 03:56:00 AM
Quote from: HSE on December 07, 2022, 12:05:51 AM
:thumbsup: but that can return focus in other controls.
Quote from: HSE on December 07, 2022, 01:50:55 AM
      :biggrin: :biggrin: :biggrin:

Quote from: jj2007 on December 07, 2022, 12:06:57 AM
How that?

Quote from: jj2007 on December 06, 2022, 11:23:31 AM
Your lack of imagination is deplorable :biggrin:

Your lack of arguments, too :tongue:

Show me how the MsgBox macro could "return focus in other controls". You love criticising, but you rarely prove your points. Make an effort, demonstrate that you are decent coder.
Title: Re: MessageBox changes the focus from edit control to main window
Post by: hutch-- on December 07, 2022, 08:47:50 AM
The problem is so easily solved.

Set a GLOBAL variable.
As each edit control gets the focus, set its handle to that GLOBAL.

Easy, peasy, sleazy, greasy !
Title: Re: MessageBox changes the focus from edit control to main window
Post by: jj2007 on December 07, 2022, 09:05:19 AM
Quote from: hutch-- on December 07, 2022, 08:47:50 AM
The problem is so easily solved.

Set a GLOBAL variable.
As each edit control gets the focus, set its handle to that GLOBAL.

Easy, peasy, sleazy, greasy !

That requires a handler - an overkill. My solution is short and foolproof.
Title: Re: MessageBox changes the focus from edit control to main window
Post by: HSE on December 07, 2022, 09:30:32 AM
Quote from: jj2007 on December 07, 2022, 03:56:00 AM
You love criticising,

I'm a professional  :thumbsup:

Quote from: jj2007 on December 07, 2022, 03:56:00 AM
but you rarely prove your points.

Some times is better that who receive the critic find the way, and I know You can  :biggrin:

Quote from: jj2007 on December 07, 2022, 03:56:00 AM
Make an effort, demonstrate that you are decent coder.

How that?

Just in case. If you make a real program with a real interface, you can find that GetFocus don't return the Edit handle  :biggrin:

Like in this little program (and is not so complex):
Title: Re: MessageBox changes the focus from edit control to main window
Post by: jj2007 on December 07, 2022, 09:36:27 AM
Quote from: HSE on December 07, 2022, 09:30:32 AMJust in case. If you make a real program with a real interface, you can find that GetFocus don't return the Edit handle  :biggrin:

Like in this little program (and is not so complex):

If you don't post code, I will consider you a troll, Hector.
Title: Re: MessageBox changes the focus from edit control to main window
Post by: HSE on December 07, 2022, 09:51:15 AM
Quote from: jj2007 on December 07, 2022, 09:36:27 AM
If you don't post code

Sorry, it's unplublished yet (and advance is very slow  :eusa_boohoo:).

But the trick, apparently, is not a secret  :biggrin:
Quote from: hutch-- on December 07, 2022, 08:47:50 AM
Set a GLOBAL variable.
Title: Re: MessageBox changes the focus from edit control to main window
Post by: jj2007 on December 07, 2022, 10:04:28 AM
The "trick" is an overkill. Besides, I am looking forward to see a working example. I invite you to modify the simple template at the beginning of this thread - plain Masm32. Btw I do use a global variable, see here (http://www.jj2007.eu/pics/MsgBoxKeepFocus.png).

It's more complicated than you think.

Quote from: jj2007 on December 07, 2022, 09:05:19 AM
Quote from: hutch-- on December 07, 2022, 08:47:50 AM
The problem is so easily solved.

Set a GLOBAL variable.
As each edit control gets the focus, set its handle to that GLOBAL.

Easy, peasy, sleazy, greasy !

That requires a handler - an overkill. My solution is short and foolproof.
Title: Re: MessageBox changes the focus from edit control to main window
Post by: HSE on December 07, 2022, 10:21:28 AM
Quote from: jj2007 on December 07, 2022, 10:04:28 AM
I am looking forward to see a working example. I invite you to modify the simple template at the beginning of this thread - plain Masm32. Btw I do use a global variable, see here (http://www.jj2007.eu/pics/MsgBoxKeepFocus.png).

It's more complicated than you think.

I don't see the problem:
Title: Re: MessageBox changes the focus from edit control to main window
Post by: jj2007 on December 07, 2022, 11:03:48 AM
Yep, you don't see the problem :thumbsup:

mov ebx, rv(GetFocus)
invoke MessageBox, 0, chr$("Focus will change"), chr$("Title"), MB_OK
push eax
invoke SetFocus, hEdit
pop eax
pop ebx
Title: Re: MessageBox changes the focus from edit control to main window
Post by: HSE on December 07, 2022, 10:14:55 PM
If you have more than one edit, you must use hEdit to store the active edit handle.
Title: Re: MessageBox changes the focus from edit control to main window
Post by: jj2007 on December 07, 2022, 10:32:38 PM
Quote from: HSE on December 07, 2022, 10:14:55 PM
If you have more than one edit, you must use hEdit to store the active edit handle.

You are moving closer now :thumbsup: