Search found 93 matches: absoluteposition

Return to advanced search

Ayuda, busqueda incremental

... ID 120 OF oDlgStk ACTION ( lsave := .t., oDlgSTK:End() ) REDEFINE button btnMod ID 130 OF oDlgStk action (Editstock( oBrow, oCon, oRS1, oRS1:AbsolutePosition, .t. ), cSQL := wwcSQL) // Editstock( obrow, .t. ) REDEFINE button btnOK ID 4002 OF oDlgStk ACTION veoplan( precio_vta, 9, 0 ) REDEFINE ...
by jpcavagnaro
Wed Nov 22, 2023 11:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ayuda, busqueda incremental
Replies: 1
Views: 313

Re: Error in FW_ArrayAsRecordSet Seek - Please help

... the only option is to make an ASCAN into the array obtained with RsGetRows( oRs ), and then, position the cursor in the oRS recordset with Rs:AbsolutePosition := nPos. The code with de option: Function Main()   LOCAL aStruct := {}, aRegs := {}, oRs   SET EXCLUSIVE ...
by Cgallegoa
Tue Aug 08, 2023 10:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error in FW_ArrayAsRecordSet Seek - Please help
Replies: 6
Views: 358

Re: Position in ADO Recordset

hi,
nageswaragunupudi wrote:After sorting, oRs:BookMark points to the record number in the original order as read where as oRs:AbsolutePosition points to the relative position in the sorted order.

ah, understand

thx for all Answer
by Jimmy
Sun Jun 11, 2023 3:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Position in ADO Recordset
Replies: 3
Views: 238

Re: Position in ADO Recordset

oRs:BookMark --> is like RECNO() of DBF oRs:AbsolutePosition --> is like OrdKeyNo() of DBF After reading a recordset, both point to the same record. After reading a recordset, we can sort the recordset in memory by oRs:Sort := cFieldName After ...
by nageswaragunupudi
Sun Jun 11, 2023 1:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Position in ADO Recordset
Replies: 3
Views: 238

Re: Position in ADO Recordset

Jimmy,

Equivalents:
    Found() --> .not. oRs:Eof()
    RecNo() --> oRs:BookMark
    DbGoTo( n ) --> oRs:BookMark := n
    OrdKeyNo() --> oRs:AbsolutePosition
    OrdKeyGoTo( x ) --> oRs:AbsolutePosition := x
Regards,
by Cgallegoa
Sun Jun 11, 2023 1:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Position in ADO Recordset
Replies: 3
Views: 238

Re: XBROWSE : BookMark what is it for ?

... to ( oBrw:cAlias )-> GOTO( n ) for DBF and is equivalent to oBrw:oRs:BookMark := n for ADO Same way oBrw:KeyNo is same is OrdKeyNo() for DBF, AbsolutePosition of ADO, etc XBrowse can handle many types of datasources, which use different methods, functions and datas. We talk to XBrowse is one ...
by nageswaragunupudi
Sun Apr 16, 2023 10:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : BookMark what is it for ?
Replies: 1
Views: 199

Re: Area de trabajo no usada: ORDKEYNO

... } oBrow:bSkip = { | nSkip | Skipper( oRs1Cli, nSkip ) } oBrow:lcellstyle := .f. oBrow:nlinestyle := 2 oBrow:nclrpane := { || iif( ( oRS1Cli:AbsolutePosition / 2 ) - INT( oRS1Cli:AbsolutePosition / 2 ) > 0, RGB( 193, 221, 255 ), RGB( 221, 245, 255 ) ) } oBrow:GoTop() oBrow:aActions = { ...
by jpcavagnaro
Sun Sep 11, 2022 12:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Area de trabajo no usada: ORDKEYNO
Replies: 3
Views: 320

Re: xBrowse - ADO - SetMultiSelectCol - lAutosort

If the customer selects columns and then changes the oRs order (since SetMultiSelectCol works with oRs: AbsolutePosition) NO. oBrw:aSelected is NOT an array of oRs:AbsolutePositions. It is an array of oRs:BookMarks BookMark of a RecordSet is like RECNO() of DBF. Does not change ...
by nageswaragunupudi
Tue Sep 06, 2022 6:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - ADO - SetMultiSelectCol - lAutosort
Replies: 3
Views: 489

xBrowse - ADO - SetMultiSelectCol - lAutosort

... and lAutosort (as example) . If the customer selects columns and then changes the oRs order (since SetMultiSelectCol works with oRs: AbsolutePosition) the result of the selected columns is wrong . I think SetMultiSelectCol should work on the table ID . #include "fivewin.ch"function ...
by Maurizio
Tue Sep 06, 2022 8:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - ADO - SetMultiSelectCol - lAutosort
Replies: 3
Views: 489

Re: consulta funciones nativas MySQL/Maria DB Fivewin

joseluispalma wrote:Thank you/ gracias.

And oRs:AbsolutePosition is supported?


Yes
by nageswaragunupudi
Thu Apr 09, 2020 10:21 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: consulta funciones nativas MySQL/Maria DB Fivewin
Replies: 9
Views: 1377

Re: consulta funciones nativas MySQL/Maria DB Fivewin

Thank you/ gracias.

And oRs:AbsolutePosition is supported?
by joseluispalma
Thu Apr 09, 2020 9:14 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: consulta funciones nativas MySQL/Maria DB Fivewin
Replies: 9
Views: 1377

Re: Ayuda con SQL

... + str(val( tfactura[ i, 10 ] ),10,2) + ", cancelado = 9999999 where id = " + str(tregistro[ i ]) + chr( 13 ) + chr( 10 ) else wrecset:AbsolutePosition = tregistro[ i ] //wrecset:find("factura"=jk ) //oRs:Find( "file_num = '"+cFIND+"'" ) if tfactura[ i, ...
by jpcavagnaro
Wed Apr 01, 2020 1:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con SQL
Replies: 5
Views: 1223

Ayuda con un xBrowse (SOLUCIONADO)

... a una fila eliminada o a una fila marcada para eliminar. (0x80040E23): Microsoft Cursor Engine Stack Calls =========== Called from: => TOLEAUTO:ABSOLUTEPOSITION( 0 ) Called from: .\source\classes\XBROWSE.PRG => (b)TXBROWSE_SETADO( 5620 ) Called from: .\source\classes\XBROWSE.PRG => (b)TXBROWSE( ...
by Armando
Sun Jul 08, 2018 10:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con un xBrowse (SOLUCIONADO)
Replies: 6
Views: 1957

Re: Rowset data and method is not working.

OrdKeyCount() We did not create this method. Instead you can use method KeyCount() AbsolutePosition: Correct spelling is ABSOLUTEPOISTION and not ABSOUTEPOSITION. This access method is provided for compatibility with ADO. The result is the same as KeyNo() LastRec(): ...
by nageswaragunupudi
Mon Feb 06, 2017 12:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Rowset data and method is not working.
Replies: 2
Views: 806

Re: FWH: MySql/MariaDB: RowSet object

... order, respecting filters. OrdKeyCount(), OrdKeyNo(), OrdKeyGoTo( nKeyNo ) KeyCount(), KeyNo(), KeyGoTo( nKeyNo ) RecordCount(), AbsoutePosition, AbsolutePosition := n All these methods work exactly the same way as DBF / RecordSet After sorting it is only KeyNo() that appears serially but not ...
by nageswaragunupudi
Thu Jul 21, 2016 11:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH: MySql/MariaDB: RowSet object
Replies: 51
Views: 19551
Next

Return to advanced search