Search found 414 matches: tabstop

Return to advanced search

Re: ButtonBmp TABSTOP

I tested with a sample posted earlier in this thread it is working.
If it is not working in another program, please post your code which is not working for you along with your rc file.
by nageswaragunupudi
Sun Jan 07, 2024 5:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp TABSTOP
Replies: 18
Views: 2421

Re: ButtonBmp TABSTOP

? oBtn:WinStyle( WS_TABSTOP ) --> lActiveoBtn:WinStyle( WS_TABSTOP,  .T.  (or) .F. ) // Enable/Disable the TabStop style Mr. Nages Desn't work. In the TABSTOP option of the button in Pelles c I set it to YES but when I use oBtn:WinStyle( WS_TABSTOP, .F. ) it it ...
by wartiaga
Sun Jan 07, 2024 5:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp TABSTOP
Replies: 18
Views: 2421

Re: ButtonBmp TABSTOP

...   REDEFINE BUTTONBMP oBtn[2] PROMPT "&Two" ID 202 OF oDlg ACTION MsgInfo("Two - Without TabStop")    REDEFINE BUTTONBMP oBtn[3] PROMPT "&Disabe TS" ID 203 OF oDlg ACTION (oBtn[2]:WinStyle(WS_TABSTOP,.F.), ...
by Cgallegoa
Sat Jan 06, 2024 9:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp TABSTOP
Replies: 18
Views: 2421

Re: ButtonBmp TABSTOP

? oBtn:WinStyle( WS_TABSTOP ) --> lActiveoBtn:WinStyle( WS_TABSTOP,  .T.  (or) .F. ) // Enable/Disable the TabStop style Mr. Nages Desn't work. In the TABSTOP option of the button in Pelles c I set it to YES but when I use oBtn:WinStyle( WS_TABSTOP, .F. ) it it ...
by nageswaragunupudi
Sat Jan 06, 2024 4:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp TABSTOP
Replies: 18
Views: 2421

Re: ButtonBmp TABSTOP

   IF lAppend  // SE FOR UMA INCLUSAO DE PROPOSTA, ENTRAR AQUI.       ACTIVATE DIALOG oDlg NOWAIT     ;         ON INIT( XFOCUS( aGet[1] ) ) ;         VALID( !GETKEYSTATE( ...
by karinha
Sat Jan 06, 2024 3:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp TABSTOP
Replies: 18
Views: 2421

Re: ButtonBmp TABSTOP

Quando PARTIR do MENU com a OPCAO, no ON INIT do DIALOGO, use o XFOCUS() e ponha o FOCO no botão que você quiser.

Regards, saludos.
by karinha
Sat Jan 06, 2024 3:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp TABSTOP
Replies: 18
Views: 2421

Re: ButtonBmp TABSTOP

Tenho 2 opções no meu sistema que utiliza essa mesma dialog. LOCAL DeOndeVem Dispara do MENU com DeOndeVem e controla na função. Como você parte(DeOndeVem) do Menu?    IF DeOndeVem = "OPCAO1"      DEFINE BUTTON... WHEN(..)  // Hide/Enable()/Disable(), etc.   ELSE      DEFINE BUTTO...
by wartiaga
Sat Jan 06, 2024 3:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp TABSTOP
Replies: 18
Views: 2421

Re: ButtonBmp TABSTOP

E posso controlar qualquer controle(ID) do diálogo, disparar para a função que eu quiser; Ligar/Desligar qualquer controle(ID), etc. FUNCTION COMPRAS( DeOndeVem )   IF DeOndeVem = [FORNECE]      REDEFINE SENSITIVE SAY aSayCliente VAR oSayFornece ID 403 OF oDl...
by karinha
Sat Jan 06, 2024 3:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp TABSTOP
Replies: 18
Views: 2421

Re: ButtonBmp TABSTOP

Veja como eu façco em COMPRAS.PRG para o módulo de COMPRAS() saber o que fazer com o mesmo Botão:          //-> ESTA EM C:\GERAL GERAL.EXE - HENNING LEGAL. GOSTEI         SEPARATOR         MENUITEM "Pedidos de Compras...
by karinha
Sat Jan 06, 2024 3:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp TABSTOP
Replies: 18
Views: 2421

Re: ButtonBmp TABSTOP

Tenho 2 opções no meu sistema que utiliza essa mesma dialog. LOCAL DeOndeVem Dispara do MENU com DeOndeVem e controla na função. Como você parte(DeOndeVem) do Menu?    IF DeOndeVem = "OPCAO1"      DEFINE BUTTON... WHEN(..)  // Hide/Enable()/Disable(), etc.   ELSE      DEFINE BUTTO...
by karinha
Sat Jan 06, 2024 2:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp TABSTOP
Replies: 18
Views: 2421

Re: ButtonBmp TABSTOP

... realmente quer fazer no segundo botão, você quer ligar/desligar depois de uma ação do programa(ACTION)? é isso? Qual a razão de ligar/desligar o TABSTOP de um botão? Sinceramente não entendi qual o objetivo disto! SDS, Regards, saludos. Oi Karinha tudo bem? Veja só, tenho uma dialog criada em ...
by wartiaga
Sat Jan 06, 2024 2:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp TABSTOP
Replies: 18
Views: 2421

Re: ButtonBmp TABSTOP

wartiaga, explique em português o que você realmente quer fazer no segundo botão, você quer ligar/desligar depois de uma ação do programa(ACTION)? é isso? Qual a razão de ligar/desligar o TABSTOP de um botão? Sinceramente não entendi qual o objetivo disto!

SDS,

Regards, saludos.
by karinha
Sat Jan 06, 2024 2:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp TABSTOP
Replies: 18
Views: 2421

Re: ButtonBmp TABSTOP

? oBtn:WinStyle( WS_TABSTOP ) --> lActiveoBtn:WinStyle( WS_TABSTOP,  .T.  (or) .F. ) // Enable/Disable the TabStop style Mr. Nages Desn't work. In the TABSTOP option of the button in Pelles c I set it to YES but when I use oBtn:WinStyle( WS_TABSTOP, .F. ) it it ...
by wartiaga
Sat Jan 06, 2024 1:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp TABSTOP
Replies: 18
Views: 2421

Re: ButtonBmp TABSTOP

Code: Select all  Expand view
? oBtn:WinStyle( WS_TABSTOP ) --> lActive
oBtn:WinStyle( WS_TABSTOP,  .T.  (or) .F. ) // Enable/Disable the TabStop style
by nageswaragunupudi
Sat Jan 06, 2024 9:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp TABSTOP
Replies: 18
Views: 2421

Re: ButtonBmp TABSTOP

...   REDEFINE BUTTONBMP oBtn[2] PROMPT "&Two" ID 202 OF oDlg ACTION MsgInfo("Two - Without TabStop")     REDEFINE BUTTONBMP oBtn[3] PROMPT "&Three" ID 203 OF oDlg ACTION MsgInfo("Three")    ...
by wartiaga
Sat Jan 06, 2024 3:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp TABSTOP
Replies: 18
Views: 2421
Next

Return to advanced search