The following sample shows the problem: the 2007 effect of the menu is interrupted by the window scrollbar:
EMG
#include "Fivewin.ch"
FUNCTION MAIN()
  LOCAL oWnd, oMen
  MENU oMen 2007
    MENUITEM "Test"
  ENDMENU
  DEFINE WINDOW oWnd;
      MENU oMen;
      VSCROLL
  DEFINE BUTTONBAR OF oWnd 2007
  ACTIVATE WINDOW oWnd
  RETURN NILEMG
