I need to simulate pressing and holding the left mouse button.[DllImport("user32.dll", SetLastError = true)]
public static extern void keybd_event(byte bVk, byte introspection data, uint dwFlags, UIntPtr dwExtraInfo);
mouse_event(0x00008000 | 0x00000002 | 0x00000004, 0, 0, 0, 0);
So I mulinuu clicking. How to make sure tha...