Displaying 2 results from an estimated 2 matches for "endsel".
Did you mean:
  endel
  
2001 Feb 14
0
Wine Weekly News #82 (2001 Week 07)
...ran into an interesting issue:
   I have an application that handles several text edit controls.
       At one point it flips from the first to the second (after you have
       entered the fourth character).
       This is done by a function, which does (simplified) this:
{
        DWORD startsel,endsel;
        PostMessageA(hwnd1,EM_GETSEL,&startsel,&endsel);
        SetFocus(hwnd2);
        PostMessageA(hwnd2,EM_SETSEL,0,0);
        /* ... */
        CallWindowProcA(hwnd,....);
        return;
}
       According to the +relay,+edit trace the EM_GETSEL is executed way
       _AFTER_ th...
2001 Feb 14
0
Wine Weekly News #82 (2001 Week 07)
...ran into an interesting issue:
   I have an application that handles several text edit controls.
       At one point it flips from the first to the second (after you have
       entered the fourth character).
       This is done by a function, which does (simplified) this:
{
        DWORD startsel,endsel;
        PostMessageA(hwnd1,EM_GETSEL,&startsel,&endsel);
        SetFocus(hwnd2);
        PostMessageA(hwnd2,EM_SETSEL,0,0);
        /* ... */
        CallWindowProcA(hwnd,....);
        return;
}
       According to the +relay,+edit trace the EM_GETSEL is executed way
       _AFTER_ th...