FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin para Harbour/xHarbour de un get a un folder... no hace el salto correcto
Posts: 1956
Joined: Fri Oct 07, 2005 07:08 PM
de un get a un folder... no hace el salto correcto
Posted: Tue Apr 12, 2011 01:29 PM

hola.

tengo un dialogo.
con 2 GET y a la derecha un folder con 2 get dentro.

estando en el get 1 o 2 del dialogo princial, al presionar TAB no entra a ninguno de los get del folder.

Que puede estar pasando?

FWH 21.02
Harbour 3.2.0dev (r2104281802)
Copyright (c) 1999-2021, https://harbour.github.io/
Posts: 8515
Joined: Tue Dec 20, 2005 07:36 PM
Re: de un get a un folder... no hace el salto correcto
Posted: Tue Apr 12, 2011 03:49 PM

Creo que el mejor, és usar el comando OJUMP.

Salu2

João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
Posts: 8515
Joined: Tue Dec 20, 2005 07:36 PM
Re: de un get a un folder... no hace el salto correcto
Posted: Tue Apr 12, 2011 04:16 PM
Ejemplo:
Code (fw): Select all Collapse
    REDEFINE GET aGet[025] VAR   XBOLETO          ;
             PICTURE "@K!"                                  ;
             ID 44 SPINNER OF oFld:aDialogs[ 1 ]            ;
             FONT oFont UPDATE                              ;
             COLOR CLR_HRED, CLR_HCYAN                      ;
             CURSOR  oHand                                  ;
             MESSAGE ( OemToAnsi( "Emite Mala Direta?" ) )  ;
             VALID IF( GetASyncKey( VK_RETURN )  .OR.       ; // Fantastico
                       GetASyncKey( VK_DOWN   ),            ; // Funcionou Perfeito
                     ( aGet[025]:oJump := aGet[028],        ; // Pula Para Nome_Artis
                       oFld:SetOption( 2 ), oFld:SetFocus(),; // By Ednaldo Rolim
                       oFld:Refresh(), xFocus( aGet[028] ), .T. ), .T. )
João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
Posts: 1956
Joined: Fri Oct 07, 2005 07:08 PM
Re: de un get a un folder... no hace el salto correcto
Posted: Tue Apr 12, 2011 11:20 PM
Gracias.

karinha wrote:Ejemplo:
Code (fw): Select all Collapse
    REDEFINE GET aGet[025] VAR   XBOLETO          ;
             PICTURE "@K!"                                  ;
             ID 44 SPINNER OF oFld:aDialogs[ 1 ]            ;
             FONT oFont UPDATE                              ;
             COLOR CLR_HRED, CLR_HCYAN                      ;
             CURSOR  oHand                                  ;
             MESSAGE ( OemToAnsi( "Emite Mala Direta?" ) )  ;
             VALID IF( GetASyncKey( VK_RETURN )  .OR.       ; // Fantastico
                       GetASyncKey( VK_DOWN   ),            ; // Funcionou Perfeito
                     ( aGet[025]:oJump := aGet[028],        ; // Pula Para Nome_Artis
                       oFld:SetOption( 2 ), oFld:SetFocus(),; // By Ednaldo Rolim
                       oFld:Refresh(), xFocus( aGet[028] ), .T. ), .T. )
FWH 21.02
Harbour 3.2.0dev (r2104281802)
Copyright (c) 1999-2021, https://harbour.github.io/
Posts: 1789
Joined: Tue Oct 11, 2005 05:01 PM
Re: de un get a un folder... no hace el salto correcto
Posted: Wed Apr 13, 2011 10:30 PM

si trabajas con recursos, verifica si el control que tiene para el folder tiene el WS_TABSTOP aplicado, en caso contrario no realizara el saldo de un get de fuera a get dentro del folder.

Salu2

Carlos Vargas

Desde Managua, Nicaragua (CA)
Posts: 1956
Joined: Fri Oct 07, 2005 07:08 PM
Re: de un get a un folder... no hace el salto correcto
Posted: Wed Apr 13, 2011 11:28 PM
carlos vargas wrote:si trabajas con recursos, verifica si el control que tiene para el folder tiene el WS_TABSTOP aplicado, en caso contrario no realizara el saldo de un get de fuera a get dentro del folder.


ok. reviso. gracias
FWH 21.02
Harbour 3.2.0dev (r2104281802)
Copyright (c) 1999-2021, https://harbour.github.io/

Continue the discussion