Search found 77 matches: aggr

Return to advanced search

Re: XBROWSE Error on :nFooterType == AGGR_MIN

Mr Gunther Thanks We modify this code             if :nFooterType == AGGR_MIN .or. :nFooterType == AGGR_MAX               :nTotal := nil            endif  as             if :nFooterType == AGGR_MIN .or. :nFooterType == AGGR_MAX               :nMinVal := nil // necessary               :nMaxVal := nil...
by nageswaragunupudi
Thu Jun 08, 2017 9:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Error on :nFooterType == AGGR_MIN
Replies: 2
Views: 847

XBROWSE Error on :nFooterType == AGGR_MIN

In method MakeTotals() is an error with AGGR_MIN or AGGR_MAX. I have marked with //WHY and //ERROR   if ! Empty( aCols )      for each oCol in aCols         WITH OBJECT oCol            DEFAULT :nFooterType := AGGR_SUM            :nTotal := :nTotalSq := 0.0            :nCount := 0            ...
by byte-one
Thu Jun 08, 2017 6:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Error on :nFooterType == AGGR_MIN
Replies: 2
Views: 847

error al totalizar columna xbrowse

Hola foro estoy tratando de totalizar una columna en xbrowse pero me tira este error: http://thumbs.subefotos.com/67d8bac6360739f193d9d378d1f6c50bo.jpg AGGR_SUM , totaliza la columna por si sola?    XBrNumFormat( 'A', .t. )   REDEFINE XBROWSE oBrwDet                          ...
by artu01
Fri Feb 03, 2017 11:52 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: error al totalizar columna xbrowse
Replies: 5
Views: 820

New FTDN December/Diciembre 2016 (FWH 16.12)

December 2016 ============= * Enhancement: function MsgDate() increased used font: http://forums.fivetechsupport.com/viewtopic.php?p=196570#p196570 * Enhancement: samples\design.prg now support bitmaps controls too: http://forums.fivetechsupport.com/viewtopic.php?p=196228#p196228 * Enhancement: Clas...
by Antonio Linares
Thu Dec 22, 2016 9:24 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN December/Diciembre 2016 (FWH 16.12)
Replies: 10
Views: 4961

ARCHIVO TESTMERG.PRG

Hola amigo como Actualizo los Total en este Archivo TestMerg,prg ya que le agregue el edit


WITH OBJECT oBrw:aCols[ 5 ]
:nEditType := EDIT_GET
:nFooterType := AGGR_SUM
END
pero no actuliza el total solo el gran total
Saludos
by jbrita
Mon Jul 18, 2016 5:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ARCHIVO TESTMERG.PRG
Replies: 1
Views: 384

New FTDN April/Abril 2016 (FWH 16.04)

April 2016 ========== * New function Toast( cFirstLine, cSecondLine, cThirdLine, cImageFileName ) --> nil to show standard Windows 10 toasts notifications! Please review samples\toastb.prg * Enhancement: MsgSplash() and MsgLogo() now do not require freeimage.dll for non bmp images. MsgLogo() now ...
by Antonio Linares
Thu May 12, 2016 6:51 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2016 (FWH 16.04)
Replies: 8
Views: 7729

Re: MAKETOTALS MAS VALOR DE UNA VARIABLE

First please make this change in xbrowse.prg. In the METHOD RecalcTotal( nOldVal, nNewVal ) CLASS TXBrwColumn Change this line      if ::bFooter != nil as      if ::bFooter != nil .and. Empty( ::nFooterType )  Please use this modified xbrowse.prg in all you...
by nageswaragunupudi
Mon Apr 25, 2016 2:08 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: MAKETOTALS MAS VALOR DE UNA VARIABLE
Replies: 2
Views: 651

xBrowse oBw:ToExcel()

To escape from error if ListSeparator is changed on the PC i use this function GetListSeparator() in xBrowse class cFormula:= "SUBTOTAL(" + ; LTrim( Str( FW_DeCode( IfNil( oCol:nFooterType, 0 ), AGGR_SUM, 9, AGGR_MAX, 4, AGGR_MIN, 5, ; AGGR_COUNT, 3, AGGR_AVG, 1, AGGR_STDEV, 7, AGGR_STDEVP...
by avista
Tue Dec 15, 2015 12:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse oBw:ToExcel()
Replies: 11
Views: 1778

Re: xBrowse MakeTotals on Array Column

Rick

WITH OBJECT oLbx3
:aCols[2]:nFooterType := AGGR_TOTAL
END

ODLG:bSTART := { || Olbx3:MAKETOTALS(),Olbx3:SETFOCUS() }

Hth

Richard
by Richard Chidiak
Thu Aug 06, 2015 4:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse MakeTotals on Array Column
Replies: 2
Views: 604

Re: Metodo Report de XBrowse - Totales

Please make this correction in the static function MakeRepCol( oRep, oXCol ) in xbrowe.prg Existing code:      oCol := RptAddColumn( aHeader, nil ,;                            { bData }, nSize, { ...
by nageswaragunupudi
Sun Jul 19, 2015 9:09 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Metodo Report de XBrowse - Totales
Replies: 2
Views: 520

New FTDN April 2015 (FWH 15.04)

April 2015 ========== * New: Class TBar Method Redefine(). We explain here why this should not be used, though anyhow we have implemented it in case someone needs it: http://forums.fivetechsupport.com/viewtopic.php?p=174212#p174212 Sample: barfrmrc.prg, barfrmrc.rc * New: Buttonbar and buttons can n...
by Antonio Linares
Sat Apr 25, 2015 7:44 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2015 (FWH 15.04)
Replies: 6
Views: 3612

Xbrowse ADO

I am trying to become familiar with the operation of ADO in various settings. I downloaded the working function I call below ADO_DBF() from a thread on this forum. When I compile ADO_DBF() by itself, all menus, etc. work fine. But when I bring ADO_DBF() in as a short version of a menuing c:\fwh\samp...
by brewster
Fri Oct 10, 2014 6:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse ADO
Replies: 4
Views: 1141

Footer xBrowse

Hola foro, Quiero usar AGGR_COUNT para totalizar conteo en el footer de un xbrowse conforme al valor en mi arreglo, pero no doy como totalizar, agrego una imagen de como quiero que quede, necesito contar unicamente las celdas con valor 1,2 y 4 y poder mostrar en el footer, agrego una imagen de como ...
by Francisco Horta
Tue Jan 21, 2014 4:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Footer xBrowse
Replies: 11
Views: 2623

Refresco de totales en footer de xBrowse

No sé si estoy haciendo algo mal, pero no logro averiguar la causa por la que no se refresca el total del footer cuando en un xbrowse cambian los datos o se suprime algún registro. El total de la columna 1 se refresca perfectamente, pero el total de la columna 3 no se modifica. ¿Le pasa a alguien ma...
by Manuel Aranda
Mon Sep 02, 2013 3:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Refresco de totales en footer de xBrowse
Replies: 1
Views: 552

Re: total in xbrowse

ho creato la mia procedura, ma quando la dialog viene creata il totale non esce se poi clicco su una parte qualsiasi della dialog il totale esce: questo è lo spezzone di prg: *------------------------------- @ 10,10 XBROWSE oBrw SIZE -10,-30 PIXEL OF oDlg ; CELL LINES FOOTERS NOBORDER FASTEDIT oBrw:...
by damianodec
Fri Mar 01, 2013 10:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: total in xbrowse
Replies: 26
Views: 4882
PreviousNext

Return to advanced search