Search found 18 matches: nwant

Return to advanced search

Re: ListBox Input Field Scrolling........

... := { || nItem := 1 } oBrw:bGoBottom := { || nItem := Len(aAcc_No) } oBrw:SetArray( aAcc_No, aAcc_Desc, aTrn_AmtD, aTrn_AmtC ) oBrw:bSkip := { |nWant, nOld| nOld:=nItem, nItem+=nWant, ; nItem := max( 1, min( nItem, eval( oBrw:bLogicLen ))), nItem - nOld } oBrw:bLDblClick:= {|| W_21AEU(oBrw,nItem,mMode,oDlg)} ...
by RiazKhan
Fri Apr 15, 2022 9:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ListBox Input Field Scrolling........
Replies: 5
Views: 1267

Aproperties Tsay, Timage, tBtnbmp

... Verde oBrw:SetArray ( oDlg:aControls ) oBrw:bGotop := { | | n := 1 } oBrw:bGoBottom := { | | n := EVAL ( oBrw:bLogicLen ) } oBrw:bSkip := { | nwant, nold | nold := n , n += nwant ,; n := MAX ( 1, MIN ( n, EVAL ( oBrw:bLogicLen ) ) ), n - nOld } oBrw:bLogicLen := { | | LEN ( oDlg:aControls ...
by J. Ernesto
Thu Feb 02, 2012 7:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Aproperties Tsay, Timage, tBtnbmp
Replies: 5
Views: 1279

Re: Aplicaciones Multiidioma

... ] , ; aMat[ oLbx:nAt, 2 ] ; } } oLbx:bGoTop := { || oLbx:nAt := 1 } oLbx:bGoBottom := { || oLbx:nAt := Eval( oLbx:bLogicLen ) } oLbx:bSkip := { | nWant, nOld | nOld := oLbx:nAt, oLbx:nAt += nWant, ; oLbx:nAt := Max( 1, Min( oLbx:nAt, Eval( oLbx:bLogicLen ) ) ), ; oLbx:nAt - nOld } oLbx:bLogicLen ...
by MdaSolution
Mon Dec 13, 2010 10:37 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Aplicaciones Multiidioma
Replies: 7
Views: 1495

Re: Necesito un calendario.

... oDlf COLOR RGB( 68, 90,155) oBrf:bGotop :={|| nSem:=MIN(EVAL(oBrf:bLogicLen),1)} oBrf:bGoBottom :={|| nSem:=EVAL(oBrf:bLogicLen)} oBrf:bSkip :={| nWant,nOld | nold:=nSem, nSem+=nWant,; nSem:=MAX(1, MIN(nSem,EVAL(oBrf:bLogicLen))),nSem-nOld} oBrf:lAdjLastCol:=.F. oBrf:bLogicLen :={|| LEN(aSem)} ...
by jbrita
Thu Jul 29, 2010 4:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Necesito un calendario.
Replies: 2
Views: 1275

FOLDER NO APARECE CON RECURSOS

... ][ 3 ],"999,999.99") } } oBrw:bGoTop = { || oBrw:nAt := 1 } oBrw:bGoBottom = { || oBrw:nAt := Eval( oBrw:bLogicLen ) } oBrw:bSkip = { | nWant, nOld | nOld := oBrw:nAt, oBrw:nAt += nWant,; oBrw:nAt := Max( 1, Min( oBrw:nAt, Eval( oBrw:bLogicLen ) ) ),; oBrw:nAt - nOld } oBrw:bLogicLen ...
by Luis
Thu Jun 24, 2010 7:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FOLDER NO APARECE CON RECURSOS
Replies: 3
Views: 1316

Re: Ordenar matriz multidimensiuonal

... CONSTRUCTOR METHOD Sort( nCol ) METHOD GoTop() INLINE ::nAt := 1,::Skip(0) METHOD GoBottom() INLINE ::nAt := ::LastRec(),::Skip(0) METHOD Skip(nWant,nOld) INLINE nWant := If(nWant=Nil,1,nWant),; nOld := ::nAt, ::nAt += nWant,; ::lEof:= ::nAt>::LastRec(),; ::lBof:= ::nAt<::LastRec(),; ...
by Francisco
Sat Jun 19, 2010 5:13 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ordenar matriz multidimensiuonal
Replies: 7
Views: 2522

browse arrays using xbrowse

... out ther using listbox (aka Browse): oBrw1:bGoTop = { || nItem := 1 } oBrw1:bGoBottom = { || nItem := Eval( oBrw1:bLogicLen ) } oBrw1:bSkip = { | nWant, nOld | nOld := nItem, nItem += nWant,; nItem := Max( 1, Min( nItem, Eval( oBrw1:bLogicLen ) ) ),; nItem - nOld } oBrw1:bLogicLen = { || LEN(aRange) ...
by ellano
Fri Sep 25, 2009 4:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: browse arrays using xbrowse
Replies: 3
Views: 996

para ver el array

... 1","Titulo 2" ; ID 110 UPDATE OF oDlg oLbx:bGoTop := { || nItem := 1 } oLbx:bGoBottom := { || nItem := Eval( oLbx:bLogicLen ) } oLbx:bSkip := { | nWant, nOld | nOld := nItem, nItem += nWant,; nItem := Max( 1, Min( nItem, Eval( oLbx:bLogicLen ) ) ),; nItem - nOld } oLbx:bLogicLen := { || Len( aLista ...
by fleal
Wed Oct 15, 2008 8:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema con LISTBOX
Replies: 4
Views: 1079

Y le quitas: oLbxT:bGoTop :={ || nItem1 := 1 } oLbxT:bGoBottom :={ || nItem1 := Eval( oLbxT:bLogicLen ) } oLbxT:bSkip :={ | nWant, nOld | nOld := nItem1, nItem1 += nWant,; nItem1 := Max( 1, Min( nItem1, Eval( oLbxT:bLogicLen ) ) ),; nItem1 - nOld } oLbxT:bLogicLen :={ || Len( VecComp ) }
by ADBLANCO
Wed Apr 02, 2008 6:25 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mal funcionamiento listbox con vector
Replies: 5
Views: 1496

Mal funcionamiento listbox con vector

... )} oLbxT:bGoTop :={ || nItem1 := 1 } oLbxT:bGoBottom :={ || nItem1 := Eval( oLbxT:bLogicLen ) } oLbxT:bSkip :={ | nWant, nOld | nOld := nItem1, nItem1 += nWant,; nItem1 := Max( 1, Min( nItem1, Eval( oLbxT:bLogicLen ) ) ),; nItem1 - nOld } oLbxT:bLogicLen :={ || ...
by Jorge Jaurena
Wed Apr 02, 2008 2:26 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mal funcionamiento listbox con vector
Replies: 5
Views: 1496

A sample for building CDX-Files w. Syntax-Check

... ], ; TERMARRAY[ oBrw:nAt ][ 7 ] } } oBrw:bGoTop = { || oBrw:nAt := 1 } oBrw:bGoBottom = { || oBrw:nAt := Eval( oBrw:bLogicLen ) } oBrw:bSkip = { | nWant, nOld | nOld := oBrw:nAt, ; oBrw:nAt += nWant,; oBrw:nAt := Max( 1, Min( oBrw:nAt, Eval( oBrw:bLogicLen ) ) ),; oBrw:nAt - nOld } oBrw:bLogicLen ...
by ukoenig
Tue Feb 12, 2008 6:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A sample for building CDX-Files w. Syntax-Check
Replies: 0
Views: 545

Eror en oGet:bKeyChar (Error BASE/1070 Argument Error "

... ; FIELDSIZES 200 ; OF oDlg ; SIZE 100, 24 oBrw:bGoTop = { || nItem := 1 } oBrw:bGoBottom = { || nItem := Eval( oBrw:bLogicLen ) } oBrw:bSkip = { | nWant, nOld | nOld := nItem, nItem += nWant,; nItem := Max( 1, Min( nItem, Eval( oBrw:bLogicLen ) ) ),; nItem - nOld } oBrw:bLogicLen = { || Len( aSample ...
by albeiroval
Wed Dec 26, 2007 9:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Eror en oGet:bKeyChar (Error BASE/1070 Argument Error "
Replies: 1
Views: 554

... } } oList:bGoTop = { || oList:nAt := 1 } oList:bGoBottom = { || oList:nAt := Eval( oList:bLogicLen ) } oList:bSkip = { | nWant, nOld | nOld := oList:nAt, oList:nAt += nWant, ; oList:nAt := Max( 1, Min( oList:nAt, ; Eval(oList:bLogicLen) ) ), oList:nAt - nOld } oList:bLogicLen ...
by avista
Tue Jun 12, 2007 2:10 pm
 
Forum: FiveWin for CA-Clipper
Topic: ARRAY over 4096 elements
Replies: 7
Views: 4118

... } } oList:bGoTop = { || oList:nAt := 1 } oList:bGoBottom = { || oList:nAt := Eval( oList:bLogicLen ) } oList:bSkip = { | nWant, nOld | nOld := oList:nAt, oList:nAt += nWant, ; oList:nAt := Max( 1, Min( oList:nAt, ; Eval(oList:bLogicLen) ) ), oList:nAt - nOld } oList:bLogicLen ...
by avista
Wed Jun 06, 2007 12:24 pm
 
Forum: FiveWin for CA-Clipper
Topic: ARRAY over 4096 elements
Replies: 7
Views: 4118

Re: ARRAY over 4096 elements

... = { || ArPrgElem[3]:nAt := 1 } ArPrgElem[3]:bGoBottom = { || ArPrgElem[3]:nAt := Eval( ArPrgElem[3]:bLogicLen ) } ArPrgElem[3]:bSkip = { | nWant, nOld | nOld := ArPrgElem[3]:nAt, ArPrgElem[3]:nAt += nWant, ; ArPrgElem[3]:nAt := Max( 1, Min( ArPrgElem[3]:nAt, ; Eval(ArPrgElem[3]:bLogicLen) ...
by FiveWiDi
Sat Jun 02, 2007 10:33 pm
 
Forum: FiveWin for CA-Clipper
Topic: ARRAY over 4096 elements
Replies: 7
Views: 4118
Next

Return to advanced search