Let\'s say I have a Control and its location is relative to its parent. If its embedded many times and is the great great great grandchild of the main form, how can I deter
You're looking for the PointToScreen method:
Point location = someControl.PointToScreen(Point.Empty);