Search found 56 matches: cfooter

Return to advanced search

footer on xbrowse

... := '99,999.99', ; o:nFooterType := AGGR_SUM, ; o:bOnChange := { || oRLbx:MakeTotals(),oRLbx:RefreshFooters() } }, 2 ) oRLbx:aCols[ 7 ]:cFooter := 'Totale' oRLbx:Totale:cFooter := 'Totale' oRLbx:nStretchCol :=- 1 oRLbx:MakeTotals() oRLbx:SetRDD() oRLbx:CreateFromCode() but I cannot see ...
by Silvio
Sat Mar 05, 2011 8:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: footer on xbrowse
Replies: 2
Views: 629

xbrowse tree ayuda (SOLUCIONADO)

... oBrw:nMarqueeStyle = MARQSTYLE_HIGHLROW oBrw:aCols[ 1 ]:cHeader = "Código & Nombres" oBrw:aCols[ 3 ]:cFooter = "Total :" * oBrw:MakeTotals(oCol) oBrw:Valor:nTotal := nTotal oDlg:oClient = oBrw * // Create ButtonBar * BtnBar( oBrw ) // Commn ...
by EASYSOFT
Wed Aug 25, 2010 7:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse tree ayuda (SOLUCIONADO)
Replies: 1
Views: 1397

Re: Is it possible to make more than 1 lines in footer of XBrows

Thanks Rao,


oBrw:nFooterLines := 3

line works.



nageswaragunupudi wrote:oCol:nFooterLines := 3

oCol:cFooter := 'One' + CRLF + 'Two' + CRLF + 'Three'
by Horizon
Sun Jan 17, 2010 8:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Is it possible to make more than 1 lines in footer of XBrows
Replies: 5
Views: 852

Re: Is it possible to make more than 1 lines in footer of XBrows

oCol:nFooterLines := 3

oCol:cFooter := 'One' + CRLF + 'Two' + CRLF + 'Three'
by nageswaragunupudi
Sun Jan 17, 2010 2:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Is it possible to make more than 1 lines in footer of XBrows
Replies: 5
Views: 852

Re: ACTUALIZAR FOOTERS EN XBROWSE ! RESUELTO !

HOLA A TODOS

LA SOLUCION ERA XBROW:OCOL[ NUMERO]:CFOOTER:= NTOTAL

DONDE NTOTAL ES UNA VARIABLE NUMERICA QUE ALMACENA LOS REGISTROS SUMADOS...

GRACIAS A TODOS

SALU2
by Francis
Fri Aug 28, 2009 2:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ACTUALIZAR FOOTERS EN XBROWSE
Replies: 4
Views: 1156

Re: xBrowse questions

... command, oCol:lTotal := .t. oCol:nTotal := 0 // if we already know the total, we can assign the total value. There is no need to separately assign cFooter or bFooter. XBrowse knows :ntotal is to be shown as footer with the same picture format applicable to the column. ( Note: In case of ADO and ...
by nageswaragunupudi
Fri Jun 12, 2009 11:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse questions
Replies: 10
Views: 2074

... METHOD PaintFooter( nRow, nCol, nHeight, lInvert ) CLASS TXBrwColumn local hDC, hBrush local oFont local aColors, aBitmap local cFooter local nWidth, nBmpRow, nBmpCol, nBmpNo, nBottom local aClrFooter //FranciscoA ... ... ... ... **nBottom = nRow + ( nHeight / 3 ) nBottom = nRow ...
by FranciscoA
Sun Oct 19, 2008 3:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: No encuentro las mejoras hechas a xbrowse por franciscoA ??
Replies: 17
Views: 4454

... := .F., Super:Refresh( lPaint ) ) ) METHOD RelPos( nLogicPos ) METHOD Report( cTitle, lPreview, oFont, cCaption, lModal, aCols, ; cHeader, cFooter ) METHOD Reset( cField, uVal1, uVal2 ) METHOD ResetBarPos( lInit ) METHOD ResetSeek() METHOD ReSize( nSizeType, nWidth, nHeight ) METHOD TSBrwScroll( ...
by Natter
Mon Sep 08, 2008 11:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bChange
Replies: 9
Views: 5470

... edit. Normally after inline edit of a cell, we need to write code for (1) save the data, (2) alter the total, (3) assign the formatted value to cfooter (4) redraw the footer and ( 5 ) if the column is indexed, refersh the entire browse or else refresh the current row only. What xbrowse helps ...
by nageswaragunupudi
Fri Jun 20, 2008 7:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse Footer sum of all numeric fileds in a row
Replies: 12
Views: 2816

... de edición y cuando oBrw:lFastEdit is .t., para fechas y dígitos numéricos y otros valores alfanuméricos llama al método de edición. f) DATAS cFooter / bFooter Ahora cFooter no tiene porqué ser sólo de tipo carácter. bFooter puede evaluar cualquier tipo de dato. Los pies de página serán formateados ...
by Antonio Linares
Sat Mar 29, 2008 9:25 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN March / Marzo 2008 (8.03)
Replies: 6
Views: 4951

New FTDN March / Marzo 2008 (8.03)

... on the cell invokes Edit and when oBrw:lFastEdit is .t., for dates and numerics digit key and for others alphadigit key invokes edit. f) DATAs cFooter / bFooter. Now cFooter need not be character type only. bFooter can evaluate to any data type. Footers will be formatted automatically. g) New ...
by Antonio Linares
Wed Mar 12, 2008 7:27 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN March / Marzo 2008 (8.03)
Replies: 6
Views: 4951

xbrowse - footers

Footers do not appear, as expected, if we write oBrw:lFooter := .t. oBrw:aCols[n]:bFooter := {|| "footertext" } unless we specify cFooter, that too not empty, atleast for one column. To make bFooters work, without having to specify non empty cfooter to atleast one column, following changes ...
by nageswaragunupudi
Mon Dec 31, 2007 1:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse - footers
Replies: 0
Views: 352

I now give here my changes to cFooter. I shall follow up with changes for font. /* xbrfooter.prg inhertited class to deal with footer codeblocks if a few changes are made in the orginal source, this is not necessary */ #include "FiveWin.ch" ...
by nageswaragunupudi
Mon Dec 17, 2007 1:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse – show lines slashed
Replies: 19
Views: 4510

... is a setget method( access assign ) we do not have to search where all we need to change in the code. In my personal copy I have done the same for cFooter so that it works without breaking or making too many changes in the orginal source. my 2 cents
by nageswaragunupudi
Mon Dec 17, 2007 1:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse – show lines slashed
Replies: 19
Views: 4510

Share add on method report to xbrowse

... nI ) },::acols[ni]:nwidth*0.11, ; { If( ! Empty( ::acols[ nI ]:cEditPicture), ; ::acols[ nI ]:cEditPicture, "" ) },, ; ( len(::acols[ nI ]:cFooter)>0 .and.::acols[nI]:nDataStrAlign==1 ),, ; // prints footings if the column has one (numeric only) If( ::acols[nI]:nDataStrAlign==1, "RIGHT", ...
by ShumingWang
Fri Dec 07, 2007 5:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Share add on method report to xbrowse
Replies: 0
Views: 650
PreviousNext

Return to advanced search