* contains the client coordinates to be converted.
* @return converted point of the sreen coordinates.
*/
public static Point clientToScreen(int handle, Point point)
{
POINT pt = new POINT();
pt.x = point.x;
pt.y = point.y;
OS.ClientToScreen(handle, pt);
return new Point(pt.x, pt.y);
}