As vezes aquele painel é um tanto quanto inconveniente, para esconde-lo, basta rodar o job abaixo:

1
2
3
4
5
6
7
8
9
10
11
12
13
 static void TEST_HideContentFrame(Args _args)
{
    #WinApi
    HWND contentPane =  WinApi::findWindowEx(
          WinAPI::findWindowEx(infolog.hWnd(), 0, 'MDIClient', ''), 
          0, 
          'ContentFrame',
          ''
    );
;
    if (contentPane)
        WinApi::ShowWindow(contentPane, #SW_HIDE);
}

[]s