FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index Bugs report & fixes / Informe de errores y arreglos Bug in TComboBox
Posts: 9022
Joined: Thu Oct 06, 2005 08:17 PM

Bug in TComboBox

Posted: Wed Mar 11, 2009 12:33 PM
In the following sample, try to hit TAB on the keyboard giving the focus to the combobox. Why the VALID is evaluated on gotfocus?

Code (fw): Select all Collapse
#include "Fivewin.ch"


FUNCTION MAIN()

    LOCAL oDlg

    LOCAL oCbx, cVar := SPACE( 20 )

    DEFINE DIALOG oDlg

    @ 1, 1 BUTTON "&Close" ACTION oDlg:End()

    @ 3, 1 COMBOBOX oCbx VAR cVar;
           ITEMS { "First", "Second", "Third" };
           STYLE CBS_DROPDOWN;
           VALID ( MSGINFO( "Valid" ), .T. )

    ACTIVATE DIALOG oDlg;
             CENTER

    RETURN NIL


EMG

Continue the discussion