Search found 160 matches: bookmark

Return to advanced search

Re: Como me refiero al total de una columna

... :bFooter := { || Len( oBry:aSelected ) } END WITH OBJECT :Importe :nFooterType := AGGR_SUM :bSumCondition := { || AScan( oBry:aSelected, oBry:BookMark ) > 0 } :cFooterPicture:= "@Z 9,999,999,999.99" :nTotal := 0.00 :lTotal := (.T.) END :bOnMultiSelect := { || oBry:MakeTotals() ...
by Armando
Fri Nov 13, 2020 2:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como me refiero al total de una columna (SOLUCIONADO)
Replies: 8
Views: 993

Re: Como me refiero al total de una columna

... oBrw:lFooter:= .t. 2) cuando definis la columna WITH OBJECT :Importe :nFooterType := AGGR_SUM :bSumCondition := { || AScan( oBry:aSelected, oBry:BookMark ) > 0 } :cFooterPicture := "@Z 9,999,999,999.99" // estas lineas :nTotal := 0 :lTotal := .t. END Espero te sirva. Saludos.
by Ariel
Fri Nov 13, 2020 9:28 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como me refiero al total de una columna (SOLUCIONADO)
Replies: 8
Views: 993

change on line a combo

... at the beginning I insert a column to create the setcheck WITH OBJECT oBrw:InsCol(1) :nwidth:= 30 :bEditValue := { || AScan( oBrw:aSelected, oBrw:BookMark ) > 0 } :SetCheck( nil, .t.) end :bLDblClick := { || oBrw:oCol( 1 ):CheckToggle(), oBrw:RefreshCurrent() } if the user moves the column ...
by Silvio.Falconi
Thu Nov 12, 2020 10:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: change on line a combo
Replies: 24
Views: 5452

Re: Como se Clona un Objeto

... However, if you execute a Requery on the original Recordset, the clones will no longer be synchronized to the original. The provider must support bookmarks on the Recordset object to create clones. Bookmarks are interchangeable; a bookmark reference from one Recordset object refers to the same ...
by MOISES
Wed Apr 08, 2020 2:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como se Clona un Objeto
Replies: 9
Views: 1186

Re: COMO IDENTIFICAR REGISTROS MARCADOS EN XBROWSE

... ; ARRAY aArticulos agrego una columna inicial para el checkbox WITH OBJECT oBrw:InsCol( 1 ) :bEditValue := { || AScan( oBrwPed:aSelected, oBrwPed:Bookmark() ) > 0 } :SetCheck( ,.F.,{'','',''}) :cHeader := 'Sel' END genero el browse y hago un xbrowse(oBrw:aArraydata) aparecen los 3 registros ...
by rterraz
Sun Feb 02, 2020 3:51 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: COMO IDENTIFICAR REGISTROS MARCADOS EN XBROWSE
Replies: 5
Views: 1283

COMO IDENTIFICAR REGISTROS MARCADOS EN XBROWSE

... un xbrowse de un ARRAY con una columna agregada para usar checkbox WITH OBJECT oBrw:InsCol( 1 ) :bEditValue := { || AScan( oBrw:aSelected, oBrw:BookMark ) > 0 } en determinadas circunstancias necesito hacer un aEval(oBrw:aArrayData) e identificar que registros son los que estan marcados para ...
by rterraz
Fri Jan 31, 2020 4:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: COMO IDENTIFICAR REGISTROS MARCADOS EN XBROWSE
Replies: 5
Views: 1283

Re: XBROWSE Questions

... oBrw2, oBrw1 ), nil ) } :bGotFocus := { || SyncBrowses( oBrw2, oBrw1 ) } //------------ FUNCTION SYNCBROWSES( oBrw1, oBrw2 ) WITH OBJECT oBrw2 :BookMark := oBrw1:BookMark :nRowSel := oBrw1:nRowSel :Refresh() END RETURN NIL regards Uwe :D
by ukoenig
Thu Nov 07, 2019 12:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Questions
Replies: 3
Views: 550

modharbour.org

Dear friends,
please bookmark the new domain.

http://modharbour.org

Best regards,
Otto
by Otto
Mon Sep 09, 2019 7:51 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: modharbour.org
Replies: 1
Views: 381

modharbour.org

Dear friends,
please bookmark the new domain.

http://modharbour.org

Best regards,
Otto
by Otto
Mon Sep 09, 2019 7:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: modharbour.org
Replies: 1
Views: 464

Re: How to move FWH Forum Topics move to a Folder ?

You bookmark them and keep them in a folder of bookmarks in your browser.
Delete the bookmarks that finish reading.
by nageswaragunupudi
Mon Jun 24, 2019 7:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to move FWH Forum Topics to a Folder ?
Replies: 3
Views: 406

Re: Xbrowse : aBarGetlist reposition record after change

I have to store the recno of the Xbrowse before I edit the record.

Xbrowse executes agetbarlist first and then it executed bonchange event as far as I can tell, because the bookmark I get is the one on the new position (afther the change)

Therefore I can not get back to the previous recno.
by Marc Venken
Fri Mar 08, 2019 4:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : aBarGetlist reposition record after change
Replies: 5
Views: 831

Re: Xbrowse : aBarGetlist reposition record after change

nRecNo := oBrw:BookMark

oBrw:BookMark := nRecNo
by nageswaragunupudi
Fri Mar 08, 2019 2:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : aBarGetlist reposition record after change
Replies: 5
Views: 831

Re: checkbox on xBrowse with surplus info

... to your program you get something similar: ... oBrw:SetArray(aData) WITH OBJECT oBrw:InsCol( 1 ) :bEditValue := { || AScan( oBrw:aSelected, oBrw:BookMark ) > 0 } ... Of course, I corrected my program deleting the offending lines ( oBrwO:aCols := {} and oBrwO:SetArray( aOrigen ) ) and changing ...
by ellano
Wed Oct 10, 2018 11:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: checkbox on xBrowse with surplus info
Replies: 3
Views: 1034

New FTDN April/Abril 2018 (FWH 18.04)

... now applies to columns if value is logical even if cDataType is nil. - New method IsSelectedRow() --> .t./.f.: (Same as AScan( ::aSelected, ::bookmark )) - New method SelectRow( nOperation ) --> lSelected. Same as method Select() but works when lMultiSelect is .f.. Useful for programmer ...
by Antonio Linares
Mon Jun 04, 2018 6:34 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2018 (FWH 18.04)
Replies: 1
Views: 2178

Re: xbrowse edit columns

... :nHeadStrAlign := AL_CENTER :nEditType := EDIT_BUTTON :bEditBlock := { ||RES->QUANTITY++ } :lBtnTransparent := .t. :bEditWhen := { || oBrw:BookMark == 1 } END not run it add the quantity also the record number 1 I think ed something of :bEditWhen := { ||oBrw:aArrayData:nat<>1 } where ...
by Silvio.Falconi
Mon May 14, 2018 7:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse edit columns
Replies: 17
Views: 4607
PreviousNext

Return to advanced search