What is difference between GetWindowRect and GetClientRect? How do you find the client rect of child window inside another window relative to parent?
GetWindowRect - It gives the rectangle of window frame including he client area (working area excluding windows framem , menu etc).
GetClientRect()- working area excluding windows frame , menu etc
Comments