View Single Post
  #14  
Old 03-28-2007, 04:13 AM
Karpagarajan Karpagarajan is offline
D-Web Analyst
 
Join Date: Mar 2007
Posts: 301
Karpagarajan is on a distinguished road
Thumbs up Re: VC++ Tips & Tricks

The following code is used to convert the mouse pos to the client pos. Useful one.

POINT point;
GetCursorPos(&point);
ScreenToClient(&point);

If you find any tips and tricks, please post your idea here.
__________________
Karpagarajan. R
Necessity is the mother of invention
Reply With Quote