Posts Tagged ‘ code ’
In the Tablet / Touch forums, there has been some confusion about interpreting the WM_GESTURE message, the GID_PRESSANDTAP gesture, specifically. The gist of getting to the message is: Turn the lParam into a GestureInfo structure. Grab the POINT value from the ptsLocation member Convert the lower 32 bits of the ullArgument member into a POINT structure The following code [ READ MORE ]
I have created a really simple project to test that you can programatically get Windows touch input in Windows 7. Grab it here. [ READ MORE ]
The Windows Touch API can be used in various ways to enable touch and gesture input. There are three general approaches to Windows Touch: interpreting Windows Touch (WM_TOUCH) messages; interpreting Windows Gesture (WM_GESTURE) messages; and using the manipulations API to interpret Windows Touch messages. By interpreting Windows Touch messages, you can get information about specific [ READ MORE ]
Overview Windows Server 2008 R2 supports server-side recognition. Server-side recognition lets a server recognize content from pen input on web pages. This is particularly useful when users on a network will be specifying terms that are interpreted using a custom dictionary. For example, if you had a medical application that queried a server database for patient [ READ MORE ]