Search found 105 matches: bgotop

Return to advanced search

FOLDER NO APARECE CON RECURSOS

... = 1 oBrw:bLine = { || { aSample[ oBrw:nAt ][ 1 ],; aSample[ oBrw:nAt ][ 2 ],; TRANSF(aSample[ oBrw:nAt ][ 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 += ...
by Luis
Thu Jun 24, 2010 7:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FOLDER NO APARECE CON RECURSOS
Replies: 3
Views: 1264

Re: Oracle Native Access

... of ADO and oTree ( TLinkList class ), any other data can be browsed with little programming. We only need to define the following codeblocks bGoTop bGoBottom bSkip bBof bEof bBookMark bKeyNo Alternatively we can make a small Class encapsulating the backend database library functions. The ...
by nageswaragunupudi
Tue Dec 22, 2009 6:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Oracle Native Access
Replies: 2
Views: 746

Re: dbskipper intermitent error

... OK, I tried something different. I tried to recreate the error by modifing TXBrowse(). First I tried splitting the default line between the bGotop and bSkip and closed the database between the lines. I got a differnt error.   Error description: Error DBCMD/2001  Workarea not in use: RDDNAME  ...
by James Bott
Wed Oct 14, 2009 4:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: dbskipper intermitent error
Replies: 46
Views: 9740

Re: dbskipper intermitent error

... code Still puzzled, this is the part where the error occured , in the default part .... the first 2 lines were executed not the third. DEFAULT ::bGoTop := {|| ( ::cAlias )->( DbGoTop() ) },; ::bGoBottom := {|| ( ::cAlias )->( DbGoBottom() ) },; ::bSkip := {| n | iif( n == nil, n := 1, ), ...
by Richard Chidiak
Wed Oct 14, 2009 2:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: dbskipper intermitent error
Replies: 46
Views: 9740

Re: dbskipper intermitent error

... am puzzled how we get to the error and why all the traps did not work, so i have some questions : in setrdd() function , this line got executed ::bGoTop := {|| ( ::cAlias )->( DbGoTop() ) },; while ::bSkip := {| n | iif( n == nil, n := 1, ), ( ::cAlias )->( DbSkipper( n ) ) },; bombed the ...
by Richard Chidiak
Wed Oct 14, 2009 1:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: dbskipper intermitent error
Replies: 46
Views: 9740

Re: FastReport

... "N.", 65.50, 0 }) oFr:SetUserDataSet("aDaten", "Codice;Descrizione;Qta;UM;Prezzo;Sconto", ; {|| x := 1}, ; //--> bGoTop {|| x := x + 1}, ; //--> bSkipPlus {|| x := x - 1}, ; //--> bSkipMinus {|| x > Len(aDaten)} , ; //--> bCheckEOF {|cField|nCol := ...
by Otto
Sun Oct 04, 2009 7:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FastReport
Replies: 23
Views: 9951

browse arrays using xbrowse

To all: Although there are zillions of examples 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, ...
by ellano
Fri Sep 25, 2009 4:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: browse arrays using xbrowse
Replies: 3
Views: 896

Re: Uso de TXbrowse Con TMySql

Para los que le interese, con esto resolvi el problema :D WITH OBJECT oBrow :bGoTop := {|| oTb:GoTop() } :bGoBottom := {|| oTb:GoBottom() } :bSkip := {| n | oTb:Skip( IIF( n == nil,1,n)) } :bBof := {|| oTb:Bof() } :bEof := {|| oTb:Eof() } :bBookMark := {| n | ...
by compubrion
Mon Sep 07, 2009 2:23 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Uso de TXbrowse Con TMySql
Replies: 1
Views: 800

Uso de TXbrowse Con TMySql

... OBJECT oBrow :nMarqueeStyle := MARQSTYLE_HIGHLCELL :nColDividerStyle := LINESTYLE_BLACK :lColDividerComplete := .T. :l2007 := .T. :lFooter := .T. :bGoTop := {|| oTb:GoTop() } :bGoBottom := {|| oTb: GoBottom() } :bSkip := {| n | oTb:SKIP( n ) } :bBof := {|| oTb:Bof() } :bEof := {|| oTb:Eof() } :bBookMark ...
by compubrion
Fri Sep 04, 2009 4:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Uso de TXbrowse Con TMySql
Replies: 1
Views: 800

Intermittant ADO xBrowse error ( thread with Antonio )

... been monitoring the error.log and it seems that line 3765 is still giving us trouble : >> >> Rick Lipkin >> >> DEFAULT ::bGoTop := {|| If( ::oRs != nil .and. ::oRs:RecordCount() > 0, ::oRs:MoveFirst(), nil ) },; >> ::bGoBottom := {|| If( ::oRs != nil .and. ::oRs:RecordCount() ...
by Rick Lipkin
Tue Jul 21, 2009 11:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Intermittant ADO xBrowse error ( thread with Antonio )
Replies: 11
Views: 4169

A expertos en FWH+xHarbour+TMySql

... oDlg:oClient := oBrw ACTIVATE DIALOG oDlg CENTER Return nil //--------------------------------- FUNCTION SetMyBrwSql( oBrw,oTable ) oBrw:bGoTop := { || oTable:Gotop() } oBrw:bGoBottom := { || oTable:GoBottom() } oBrw:bSkip := { |n| oTable:Skip(n) } oBrw:bBof := { || oTable:Bof() } oBrw:bEof ...
by FranciscoA
Wed Jun 10, 2009 8:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: A expertos en FWH+xHarbour+TMySql
Replies: 22
Views: 4408

Re: Un ejemplo de MySql+Sql+xHarbour

... va,,, Salu2 FUNCTION MySetBrowse( oBrw,oTable ) if ValType( oBrw ) != "O" .or. ValType( oTable ) != "O" RETURN (NIL) else oBrw:bGoTop := { || oTable:Gotop() } oBrw:bGoBottom := { || oTable:GoBottom() } oBrw:bSkip := { | n | oTable:Skip(n) } oBrw:bBof := { | n | oTable:Bof() ...
by Willi Quintana
Mon Jun 08, 2009 1:05 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Un ejemplo de MySql+Sql+xHarbour
Replies: 7
Views: 3312

Re: xBrowse a recordset from a WinChild

... DToC( .. ) is not necessary XBrowse knows the datatypes and their sizes and formats appropriately. XBrowse also provides necessary codeblocks like bGoTop, bSkip etc by itself. It is just enough for us to say what columns to be shown and whether we want to edit or not. Xbrowse knows how to read ...
by nageswaragunupudi
Thu May 21, 2009 8:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse a recordset from a WinChild
Replies: 1
Views: 649

para ver el array

... RESOURCE "Test" REDEFINE LISTBOX oLbx ; FIELDS aLista[nItem][1], aLista[nItem][2] ; HEADERS "Titulo 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,; ...
by fleal
Wed Oct 15, 2008 8:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema con LISTBOX
Replies: 4
Views: 948

... ] ),; IF( EMPTY( aArray ), "", aArray[ nCur, 3 ] ); HEADERS "Container", "Size", "Type" ; SIZE 220, 167 oBrw:bLogicLen = { || Len( aArray ) } oBrw:bGoTop = { || nCur := 1 } oBrw:bGoBottom = { || nCur := Len( aArray ) } oBrw:bSkip = { | nSkip | Skipper( aArray, @nCur, nSkip ) } oBrw:cAlias = "ARRAY" ...
by yardenmo
Mon Sep 22, 2008 8:32 am
 
Forum: FiveWin for Pocket PC
Topic: Using ListBox
Replies: 14
Views: 2616
PreviousNext

Return to advanced search