how to click explorer through PostMessage

0

I can not click on explorer in Windows 10. My Message:

private static IntPtr CreateLParam(int LoWord, int HiWord)
    {
        return (IntPtr)((HiWord << 16) | (LoWord & 0xffff));
    }

SendMessage(hand, 0x00000020, IntPtr.Zero, CreateLParam(x, y));

This request does not work for explorer. But it works for other windows.

c#
c++
window
asked on Stack Overflow Jan 4, 2020 by Gay Fox • edited Jan 4, 2020 by zdf

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0