Search found 38 matches: aenable

Return to advanced search

Re: Cómo desactivar/activar un Folder (FOLDEREX) ?

Buenos días:
Code: Select all  Expand view
    ofold:aEnable:={.f.,.f.,.f.,.f.,.t.,.t.}
 

Si tenemos un objeto folderex ofold este lleva una data que es el array aEnable, en el que como elementos lleva un valor lógico por cada pestaña del folder y este valor indica si está activo o desativado.
Un saludo
by groiss
Tue Feb 20, 2024 6:19 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cómo desactivar/activar un Folder (FOLDEREX) ?
Replies: 2
Views: 143

Re: WHEN en FOLDEREX

Internamente FolderEx utiliza para lo que necesitas un array ( aEnable )
Code: Select all  Expand view

oFolder:aEnable := { .F., .T., .F., .F. }
 
by cnavarro
Sun Jul 30, 2023 5:03 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: WHEN en FOLDEREX (SOLUCIONADO)
Replies: 3
Views: 324

Re: Tengo un folder, quiero HIDE un dialogo

yo lo hago asi:

Local aFolder

aFolder := { .t.,.t.,.t.,.t.,.f.,.f.,.t.,.t. }

oFld:aEnable:= aFolder

Saludos
by jbrita
Thu Mar 03, 2022 3:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Tengo un folder, quiero HIDE un dialogo
Replies: 9
Views: 549

Buttonbar + Menu VS. Ribbonbar

... ¿Es posible administrar estas opciones usando un RibbonBar? Leyendo encontré que se pueden deshabilitar los "Tabs" del RibbonBar (oRBar:aEnable[NoDeTab]:=.F.) y efectivamente lo deshabilita, pero me gustaría poder esconderlo (trate con la opción oRBar:hide[2]:=.T., pero no funciona). ...
by mariordz
Wed Mar 13, 2019 4:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Buttonbar + Menu VS. Ribbonbar
Replies: 12
Views: 2574

Re: Folder enable

oFld:aEnable := {.T.,.T.,.F.} clap clap ....I Know it ... I mean another argument I not Know the nOption value and the user select it from a menu when I open the folder I must show only that tab and block the others I must make ...
by Silvio.Falconi
Wed Sep 19, 2018 3:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folder enable
Replies: 5
Views: 679

Re: Folder check

Tim
This control has a DATA aEnable ( array, len( aEnable ) equal len( aDialogs ) )
This DATA contains logicals values state of each dialog: .T. -> Enable, .F. .> Disable
oFldEx:aEnable := { .T., .F. }
In this case, second dialog is disabled
by cnavarro
Fri Aug 31, 2018 11:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folder check
Replies: 2
Views: 659

Re: FolderEx y DelItem

... WS_CLIPCHILDREN, 0 ) ) ; NAME cResName brush ::oBrush endif AAdd( ::aDialogs, oDlg ) AAdd( ::aPrompts, cItem ) AAdd( ::aHelps, cnHelpId ) AAdd( ::aEnable, .t. ) AAdd( ::aVisible, .t. ) AAdd( ::aBitmaps, { 0, 0, 0 } ) AAdd( ::aBrightBmp, 0 ) AAdd( ::aAlphaLevel,255) //Biel 1404 AAdd( ::aHasAlpha, ...
by Biel EA6DD
Fri Feb 27, 2015 4:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FolderEx y DelItem
Replies: 25
Views: 4883

Re: Como deshabilitar una pestaña de la Ribbon

Joao,

oRibbonBar:aEnable[ n ] := .F.
by Antonio Linares
Wed Jul 02, 2014 5:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como deshabilitar una pestaña de la Ribbon
Replies: 2
Views: 445

Re: Mostrar una Pestaña con Tfoldex

... a la pestaña que quieras, aca como te digo las activas / desactivas, saludos... :shock: // INHABILITO PESTAÑA 2 SOLO POR LOS MOMENTOS... *oFolder:aEnable := {.t., .f., .t., .t., .t., .t., .t.} *oFolder:aEnable[2] := .f. // DESHABILITO LA PESTAÑA QUE QUIERA (por los momentos)
by joseluisysturiz
Thu Apr 24, 2014 3:46 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mostrar una Pestaña con Tfoldex
Replies: 3
Views: 446

Re: Folder - Enable/disable

Try, oFolder:aEnable[.t., .t., .f., .t., .f.], saludos... :shock:
by joseluisysturiz
Tue Nov 12, 2013 7:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folder - Enable/disable
Replies: 4
Views: 757

Re: Folder - Enable/disable

You can also write it this way

oFld:aEnable[2]:=.F. // this will disable tab 2

Richard
by Richard Chidiak
Tue Nov 12, 2013 6:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folder - Enable/disable
Replies: 4
Views: 757

Folder Pregunta

... "F3",; "F4"; SIZE 598, 356 PIXEL; OF oForm COLOR 0, 14215660 FONT oFont1 En el cual arranco de esta manera oFld:aEnable := {.T.,.F.,.F.,.F.} o sea solo activada la primer pestaña luego defino la tecla F2 SET KEY VK_F2 TO Opcion2(oDlg,oFld) y en la function Opcion2( ...
by juan carlos bellucci
Wed May 16, 2012 10:26 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Folder Pregunta
Replies: 2
Views: 650

Re: 2 Problems with TFolderex and FWH11.03

... ) lUno := .T. ENDIF DEFINE DIALOG oDls .....bla bla bla oFolder := TFolderEx():Redefine(100,oDls,aDialogs,,aPrompts,40,,5) IF lUno oFolder:aEnable := { .T., .F. } oFolder:aVisible := { .T., .F. } ENDIF ACTIVATE DIALOG oDls asi m ero y me va excelente, jejeje pequeño truco salu2 pak.o
by Francisco Horta
Fri Aug 19, 2011 6:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: 2 Problems with TFolderex and FWH11.03
Replies: 9
Views: 2248

Re: Dialogos NoWait

... ON INIT (lNew:=.f.,oDlg:aEvalWhen(),oRad:SetOption(2),CliAlta(dCli,lAlt,oBrw), ; IIF((dCli)->(EOF()),EVAL(bCliVer),(oFol:SetOption(1),oFol:aEnable:={.t.,.f.,.f.,.f.,.f.},oBrw:SetFocus()))) ; VALID (NoEscape() .AND. CierraCli(dCli,dAge,dBco,dGpo,dFpg,oBrw)) ; NOWAIT // Asi no me funciona ...
by txon
Thu Mar 31, 2011 7:07 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Dialogos NoWait
Replies: 4
Views: 825

Re: Hide oFolder option

... ( Better visible, to select enabled Pages ) Your Screenshot would look like : http://www.pflegeplus.com/pictures/delitem1.jpg oFld:aEnable = { lCheck[1], lCheck[2], lCheck[3], lCheck[4], lCheck[5], lCheck[6], ; lCheck[7], lCheck[8], lCheck[9], lCheck[10], lCheck[11], lCheck[12] ...
by ukoenig
Wed Aug 04, 2010 3:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide oFolder option
Replies: 12
Views: 3636
Next

Return to advanced search