Re: user32: Focus editboxes when the context menu is opened. (try 3)

2010-05-01 Thread Paul Vriens
On 04/24/2010 10:08 PM, Vincent Povirk wrote: +case WM_CAPTURECHANGED: +if (hWnd != (HWND)lParam) +{ +got_wm_capturechanged = 1; +EndMenu(); +} +break; Hi Vincent, EndMenu is not available on Win95 so no

Re: user32: Focus editboxes when the context menu is opened. (try 3)

2010-05-01 Thread Vincent Povirk
We can't skip the EndMenu call because that would cause the test to hang waiting for the menu to finish. Unless there's some other way we can programmatically close the popup menu on win95, I think we'll have to skip the whole test. On Sat, May 1, 2010 at 1:49 PM, Paul Vriens

Re: user32: Focus editboxes when the context menu is opened. (try 3)

2010-05-01 Thread Paul Vriens
On 05/01/2010 08:52 PM, Vincent Povirk wrote: We can't skip the EndMenu call because that would cause the test to hang waiting for the menu to finish. Unless there's some other way we can programmatically close the popup menu on win95, I think we'll have to skip the whole test. I'll give the