Search found 486 matches: gotop

Return to advanced search

Amigo,, yo siempre he esado el seek ,, con un gotop antes,,,, ya q sino no encuentra nada.... q este arriba del puntero de la DBF


La realidad no se si esto sera una anomalia,,, como te digo aprendi a usarlo asi...y considero q es lo correcto de hacer


no se q opinan los demas ???
by A&C
Fri Mar 23, 2007 8:00 pm
 
Forum: FiveWin para CA-Clipper
Topic: PROBLEMA PARA BUSCAR PRIMEROS REGISTROS CON SEEK
Replies: 11
Views: 3287

PROBLEMA PARA BUSCAR PRIMEROS REGISTROS CON SEEK

... parecido y parece que fuera un principiante por esta consulta. Trabajando con clipper / fivewin / dbfcdx tengo el siguiente problema: si hago un gotop y un seek a una determinada clave que queda entre los primeros registros de ese orden de clave encuentra el dato y se posiciona bien. si hago ...
by rbecares
Fri Mar 23, 2007 2:11 pm
 
Forum: FiveWin para CA-Clipper
Topic: PROBLEMA PARA BUSCAR PRIMEROS REGISTROS CON SEEK
Replies: 11
Views: 3287

... index it, then reopen it (causing the indexes to be closed) and you don't reopen the indexes. I don't know why you would even need to issue a oBrw:gotop() since the database should already be there. I would try checking right after this code: select 4 use mete DBSETFILTER(&bFilter,cFilter) ...
by James Bott
Thu Mar 01, 2007 5:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: where to place gotop() in xbrowse
Replies: 2
Views: 976

where to place gotop() in xbrowse

Where should I place xBrw:gotop() inside xbrowse . That code below is not causing the xbrowse to go top xBrw:pageup() is working but not my demand . STATIC FUNCTION listmete( oWnd ) *-------------------------- local oDlg, oCol ...
by Ehab Samir Aziz
Thu Mar 01, 2007 4:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: where to place gotop() in xbrowse
Replies: 2
Views: 976

xBrowse method not working

I tried gotop() method as below but not cause the browse to go top : DEFINE DIALOG oDlg of oWnd FROM 0,0 TO 45,128 TITLE "Meter reads browse " oBrw := TXBrowse():New( oDlg ) oBrw:nMarqueeStyle ...
by Ehab Samir Aziz
Mon Feb 26, 2007 8:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse method not working
Replies: 2
Views: 737

... uses tantos indicadores de alias. Es más rapido un select y trabajar en el area actual. Algo como: Select MA TEMP->(OrdSetFocus(3)) TEMP->(GoTop()) Es lo mismo que Select MA Select Temp OrdSetFocus(3) Select MA Select Temp TEMP->(GoTop()) Select MA 4) No me doy cuenta para que esta el ...
by ACC69
Mon Feb 19, 2007 3:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como dice Rene matando pulgas a cañonazos...va mi pregunta
Replies: 4
Views: 1834

... uses tantos indicadores de alias. Es más rapido un select y trabajar en el area actual. Algo como: Select MA TEMP->(OrdSetFocus(3)) TEMP->(GoTop()) Es lo mismo que Select MA Select Temp OrdSetFocus(3) Select MA Select Temp TEMP->(GoTop()) Select MA 4) No me doy cuenta para que esta el ...
by carlos.mora
Sat Feb 17, 2007 11:43 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como dice Rene matando pulgas a cañonazos...va mi pregunta
Replies: 4
Views: 1834

oBrw:bChange := { || if (lChange=.t.,( lChange=.f., RefreshCont("QUOTE",cSocio,@lChange),oBrw:GoTop(),oBrw:refresh() ), ) }



static FUNCTION RefreshCont(cdbf,cSocio,lChange)
cKey:=cSocio

(cdbf)->(OrdScope(0,cKey))

(cdbf)->(OrdScope(1,cKey))
sysrefresh()
lChange:=.f.
return NIL
by Otto
Mon Feb 05, 2007 11:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse error
Replies: 4
Views: 1036

... If ( !EMPTY( codigo ) ) oDbf:Seek(codigo) If oDbf:eof() MsgStop( "CODIGO "+Str(c_fam,3)+"-"+Str(c_art,4)+ " NO EXISTE.", "Error" ) oDbf:Gotop() lret:=.f. endif Endif oSay003:SetText( odbf:mdes_art) aqui lo encuentra pero al volver al dialogo no me muestra.. RETURN (lRet)
by Rochinha
Tue Jan 30, 2007 12:02 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ayuda para vizualizar un say
Replies: 3
Views: 917

ayuda para vizualizar un say

... If ( !EMPTY( codigo ) ) oDbf:Seek(codigo) If oDbf:eof() MsgStop( "CODIGO "+Str(c_fam,3)+"-"+Str(c_art,4)+ " NO EXISTE.", "Error" ) oDbf:Gotop() lret:=.f. endif Endif odbf:mdes_art aqui lo encuentra pero al volver al dialogo no me muestra.. RETURN (lRet) mucha gracias 
by Pablo
Mon Jan 29, 2007 8:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ayuda para vizualizar un say
Replies: 3
Views: 917

... Database q es muy buena oClientes:SetOrder(1) //aca lo dices q orden de TAG quieres oClientes:bBof:={||NIL} oClientes:bEof:={||NIL} oClientes:Gotop()
by Miguel Rivera
Fri Jan 19, 2007 6:00 pm
 
Forum: FiveWin para CA-Clipper
Topic: Amigos Ayuda URGENTE Clipper 5.3
Replies: 12
Views: 4590

... Database q es muy buena oClientes:SetOrder(1) //aca lo dices q orden de TAG quieres oClientes:bBof:={||NIL} oClientes:bEof:={||NIL} oClientes:Gotop()
by A&C
Fri Jan 19, 2007 5:44 pm
 
Forum: FiveWin para CA-Clipper
Topic: Amigos Ayuda URGENTE Clipper 5.3
Replies: 12
Views: 4590

... I added : (oDBF_Orders:cAlias)->(OrdScope(0, oDBF_CLIENTS:NUMBER)) (oDBF_Orders:cAlias)->(OrdScope(1, oDBF_CLIENTS:NUMBER)) oDBF_Orders:gotop() as you suggested and is works.
by Ollie
Mon Jan 08, 2007 8:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Update Browse from other database
Replies: 4
Views: 1033

... the scope of the orders file to match. (oOrders:cAlias)->(setScope(0, oCusts:custno)) (oOrders:cAlias)->(setScope(1, oCusts:custno)) oOrders:gotop() James
by James Bott
Mon Jan 08, 2007 5:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Update Browse from other database
Replies: 4
Views: 1033

Major flaw in TDataBase CLASS

Hi all,

I use a database that has 148 records in it. No indexes are used at all.

If I call oDbf:GoTop() and test the RecNo()
I get recno 14 instead of 1
If I call oDbf:GoBottom() and test the RecNo()
I get recno 142 instead of 148

Can anyone tell me why this weird result. :(

Regards
by Gilbert
Wed Nov 08, 2006 8:13 pm
 
Forum: FiveWin for CA-Clipper
Topic: Major flaw in TDataBase CLASS
Replies: 4
Views: 1499
PreviousNext

Return to advanced search