Search found 488 matches: gotop

Return to advanced search

Como puedo hacer un GoTop a un Tree ??

Pues eso.. camaradas, como le puedo hacer un GoTop o poner en el primer item a un tree al momento de pintarlo. cada vez que refresco el tree siempre me muestra los ultimos items. Este es el codigo que actualiza el tree segun los items que tenga ...
by gabo
Wed Jun 18, 2008 11:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como puedo hacer un GoTop a un Tree ??
Replies: 2
Views: 643

Mr James

James Bott wrote:Falconi,

Since xBrowse can now also handle database objects, it would be nice if your report method could handle them too.

I also suggest adding a gotop() before the report and saving and restoring the current recno().

James


XBrowse Report method does this gracefully.
by nageswaragunupudi
Mon May 12, 2008 7:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: report xbrowse method
Replies: 21
Views: 3767

Falconi,

Since xBrowse can now also handle database objects, it would be nice if your report method could handle them too.

I also suggest adding a gotop() before the report and saving and restoring the current recno().

James
by James Bott
Mon May 12, 2008 5:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: report xbrowse method
Replies: 21
Views: 3767

MDICHILD

... := "catlineasi" oBaset := TMsTable():New( oDb, cTabla ) if !oBaset:Open() return( nil ) endif aLi := {} If !Empty( oBaset:LastRec() ) oBaset:GoTop():Read() While !oBaset:Eof() Aadd( aLi, { oBaset:FieldGet( 1 ), oBaset:FieldGet( 2 ) } ) oBaset:Fetch() EndDo EndIf oBaset:Destroy() if oWndFact01 ...
by jponce
Wed Apr 30, 2008 3:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MDI CHILD CON DIALOGOS DE WORKSHOP
Replies: 11
Views: 2664

... Insert( Val ) METHOD Update( Val ) INLINE ::aList[ ::Pos ] := Val MESSAGE Delete() METHOD _Delete() /* Movimiento */ METHOD GoTo( n ) METHOD GoTop() INLINE ::GoTo( 1 ) METHOD GoBottom() INLINE ::GoTo( ::Size ) METHOD First() INLINE ::GoTo( 1 ) METHOD Last() INLINE ::GoTo( ::Size ) METHOD ...
by audisys
Tue Apr 22, 2008 8:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Tlist con Xbrowse
Replies: 4
Views: 1317

... Clasificación Clientes" DBSELECTAREA("jlclicla"); jlclicla->(OrdSetFocus(nIndice)); jlclicla->(DBGOTOP()) DATABASE oDbfClaCli; oDbfClaCli:GoTop(); oDbfClaCli:Blank(); nRecno := RecNo() REDEFINE LISTBOX oLbxClaCli; FIELDS jlclicla->&(FIELDNAME(1)), jlclicla->&(FIELDNAME(2)); ...
by joseluisysturiz
Mon Apr 14, 2008 3:31 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda
Replies: 7
Views: 1491

... painted correctly. I have already downloaded 8.04 but I think 8.04 and 8.03 may not be much different. Refresh( .t. )'s intended behavior is to GoTop. Normally we should use Refresh only. We should use Refresh(.t.) when we want gotop also. > oBrw:bBookMark := {| n | iif( n == nil,TEST->(RecNo()), ...
by nageswaragunupudi
Sat Apr 12, 2008 6:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: oBrw:Refresh(.T.) don't refresh new record
Replies: 18
Views: 5575

Pintar/Refrescar datos con TSBrowse

... dialogo tengo botones para ir al primer registro, siguiente, anterior y ultimo registro. El caso es que va bien el movimiento con los metodos oBrw:Gotop(), etc., colocando el puntero y el browse. Pero cuando hago una busqueda mediante el indice: select (cAlias1) ordsetfocus(1) if ...
by ermatica
Tue Mar 11, 2008 7:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pintar/Refrescar datos con TSBrowse
Replies: 6
Views: 1739

Uwe,
I use:
local nIndex:=0


MENUITEM "Select" ACTION ( oBrw:GoTop(), oBrw:nArrayAt := nIndex, oBrw:Refresh() )
by Otto
Mon Mar 10, 2008 4:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Possible, to define a Row-Startpos. in xBrowse(Array) ?
Replies: 9
Views: 2002

xbrowse problem

hello! xbrowse fwh0802 oBrw:Refresh() not work. After oBrw:Delete() if i use oBrw:Refresh() the record deleted still display in browse.
If i use oBrw:Delete(),oBrw:GoTop() and oBrw:Refresh() work great.

Thanks.
by Wanderson
Mon Mar 10, 2008 3:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse problem
Replies: 1
Views: 517

xBrowser array add/del elements

... ACTION ( ADel( aLin, oBrw:nArrayAt ), ASize( aLin, Len( aLin ) - 1 ), oBrw:SetArray( aLin ), oBrw:Refresh() ) MENUITEM "Select" ACTION ( oBrw:GoTop(), oBrw:nArrayAt := 3, oBrw:Refresh() ) ENDMENU ACTIVATE POPUP oMenu WINDOW oBrw AT nRow, nCol return nil _________________ regards, saludos Antonio ...
by Otto
Thu Mar 06, 2008 9:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowser array add/del elements
Replies: 3
Views: 1447

... case nKey == VK_RIGHT if oWnd:oHScroll != nil .and. oWnd:oHScroll:nMax > 0 oWnd:oHScroll:GoDown() endif case nKey == VK_HOME oWnd:oVScroll:GoTop() oWnd:oHScroll:GoTop() oMeta1:SetOrg(0,0) oMeta1:Refresh() case nKey == VK_END oWnd:oVScroll:GoBottom() oWnd:oHScroll:GoBottom() oMeta1:SetOrg(.8*DEVICE:nHorzRes(),.8*DEVICE:nVertRes()) ...
by Manuel Valdenebro
Thu Feb 28, 2008 4:30 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: RPREVIEW modificada por Manuel Valdenebro ?
Replies: 8
Views: 3532

Re: Clase TUtilPrn

... If aFiltro[1] > 0 /* Se abren las bases. -----------------*/ ::oTdbfEntita := oDbfClon( ::ArraJuva, "ENTITA" ) ::oTDbfEntita:GoTop():Load() ::oTdbfFactur := oDbfClon( ::ArraJuva, "FACTUR" ) ::oTdbfConFac := oDbfClon( ::ArraJuva, "CONFAC" ) ::oTdbfArticu := oDbfClon( ::ArraJuva, ...
by FiveWiDi
Mon Feb 18, 2008 7:51 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Impresion de informes (L&L, PDF, Access, ...)?
Replies: 8
Views: 3800

How to show OemToAnsi in xBrw. (when no Col's defined) ?

... SET_INDEX(oBrw5,cFELD,cFILTER), ; IIF(DBFTYP = "CDX", ; cINDKEY := ORDKEY( "NEUINDEX" ), ; cINDKEY := INDEXKEY( 0 ) ), ; oBrw5:SetFocus(), ; oBrw5:GoTop(), oBrw5:VGoTop(), oBrw5:Refresh(), ; l_INDEX := .T., oINDKEY:Refresh(), ; oFilter:Refresh(), ; oBrw5:SwapCols( 1, nOrder ), ; // Bring selected ...
by ukoenig
Sun Feb 17, 2008 1:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to show OemToAnsi in xBrw. (when no Col's defined) ?
Replies: 0
Views: 512

xBrowse Darstellg. => OemToAnsi ???

... SET_INDEX(oBrw5,cFELD,cFILTER), ; IIF(DBFTYP = "CDX", ; cINDKEY := ORDKEY( "NEUINDEX" ), ; cINDKEY := INDEXKEY( 0 ) ), ; oBrw5:SetFocus(), ; oBrw5:GoTop(), oBrw5:VGoTop(), oBrw5:Refresh(), ; l_INDEX := .T., oINDKEY:Refresh(), ; oFilter:Refresh(), ; oBrw5:SwapCols( 1, nOrder ), ; // Bring selected ...
by ukoenig
Fri Jan 25, 2008 2:19 pm
 
Forum: All products support
Topic: xBrowse Darstellg. => OemToAnsi ???
Replies: 0
Views: 1630
PreviousNext

Return to advanced search