The task is to display the coordinates of the upper left corner and the size of the window as a whole in the window. The GetWindowRect function obtained the coordinates for the upper left corner, and now how is the window size as a whole? Googled such a record:
var R: TRect; begin GetWindowREct(Form1.Handle,R); Label3.Caption := IntToStr(R.Right-R.Left )+':'+IntToStr(R.Bottom-R.Top); I did not understand what was happening) Is it possible to do it differently?