Hello everyone.
The aim is to position the window at the bottom with adjustment in width :
The position is correct under windows xp and windows 7 but not under windows 10 ! There are right, left and bottom margins !
The aim is to position the window at the bottom with adjustment in width :
Code:
display = System.GetDisplayInfo(); result = Window.GetSize(Application.GetWndHandle()); handle = Application.GetWndHandle(); x=display.Height - result.Height Window.SetPos(handle,0,x); Window.SetSize(Application.GetWndHandle(), display.Width,result.Height);

Comment