Thanks, it is quite simple...
This is all I needed (from the MdiBack class):
VB Code:
  1. Const swpFlags As Long = _
  2.       SWP_FRAMECHANGED Or SWP_NOMOVE Or _
  3.       SWP_NOZORDER Or SWP_NOSIZE
  4.  
  5. Call SetWindowPos(Me.hWnd, 0, 0, 0, 0, 0, swpFlags)