Hi all,

Small question about achoice.

Clipper on exit from achoice redraw visible elements without selection,
but in harbour all exit cases without redrawing, like this code (current element stay highlighted)
[...]
     CASE ( nKey == K_ESC .OR. nMode == AC_NOITEM ) .AND. !lUserFunc

        nMode     := AC_ABORT
        nPos      := 0
        lFinished := .T.

[...]

why not like this (or similar)
[...]
     CASE ( nKey == K_ESC .OR. nMode == AC_NOITEM ) .AND. !lUserFunc

        nMode     := AC_ABORT
        nPos      := 0
        lFinished := .T.
DispPage( acItems, alSelect, nTop, nLeft, nRight, nNumRows, 0, nAtTop, nItems, bSelect, nRowsClr )

[...]

"flat" screens with more then 1 achoice look more readable with clipper like achoice



Best Regards,
Vlad

_______________________________________________
Harbour mailing list
[email protected]
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to