Please run the following test and click on the window: you will see that the normal highlight color of the selection bar of the browse is not shown anymore (it was in the previous FWH release). It is gray instead:
EMG
#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oWnd
USE CUSTOMER
DEFINE WINDOW oWnd
ACTIVATE WINDOW oWnd;
ON CLICK TEST()
CLOSE
RETURN NIL
STATIC FUNCTION TEST()
LOCAL oDlg
DEFINE DIALOG oDlg;
SIZE 800, 600
@ 1, 1 LISTBOX FIELDS
ACTIVATE DIALOG oDlg;
CENTER NOMODAL
RETURN NILEMG
