FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Bug in TGet
Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Bug in TGet
Posted: Fri Jun 24, 2011 06:36 PM
In the following sample, please click on the second get and you will see the caret placed on the next digit and not on the clicked digit.

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


FUNCTION MAIN()

    LOCAL oDlg

    LOCAL cVar := SPACE( 30 )
    LOCAL nVar := 0

    DEFINE DIALOG oDlg

    @ 1, 1 GET cVar

    @ 3, 1 GET nVar;
           PICTURE "@EZ 999,999.99";
           RIGHT

    ACTIVATE DIALOG oDlg;
             CENTER

    RETURN NIL


EMG
Posts: 274
Joined: Fri Apr 04, 2008 01:25 PM
Re: Bug in TGet
Posted: Tue Jul 05, 2011 09:26 AM

EMG,

that obviously only happens if the 2nd get doesn't have the focus. As soon as it has the focus everything is OK. So maybe it has something to do what happens if the get gets the focus?

Best Regards,

Gilbert Kuhnert
CTO Software GmbH
http://www.ctosoftware.de
Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: Bug in TGet
Posted: Tue Jul 05, 2011 09:30 AM

Yes, it happens when you click on the second GET.

EMG

Continue the discussion