Hello You will have to use windows API to do this. The function is
::SetWindowPos(m_hWnd , // handle to window
HWND_TOPMOST, // placement-order handle
rect.left, // horizontal position
rect.top, // vertical position
rect.Width(), // width
rect.Height(), // height
SWP_SHOWWINDOW // window-positioning options);
search for how to handle unmanaged calls from C#, and dllImport. Regards:rose: