Search found 89 matches: nstart

Return to advanced search

Re: Incorrecto numero de argumento para AT

carito wrote:Hola creo que estas usando mal el comando:

en clipper es AT(<cSearch>, <cTarget>) --> nPosition

en harbour es hb_At( <cSearch>, <cString>, [<nStart>], [<nEnd>] ) --> nPos

Saludos,
Carito


Tenias razon. gracias.
by goosfancito
Wed Jan 17, 2024 5:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Incorrecto numero de argumento para AT
Replies: 2
Views: 182

Re: Incorrecto numero de argumento para AT

Hola creo que estas usando mal el comando:

en clipper es AT(<cSearch>, <cTarget>) --> nPosition

en harbour es hb_At( <cSearch>, <cString>, [<nStart>], [<nEnd>] ) --> nPos

Saludos,
Carito
by carito
Wed Jan 17, 2024 3:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Incorrecto numero de argumento para AT
Replies: 2
Views: 182

Re: New FTDN April/Abril 2023 (FWH 23.04)

Donde puedo ver un ejemplo de esto: * Mejorado: Se ha mejorado la función FW_ASort( aArray, [nStart], [nCount], [bBlock/naCols] ) para la ordenación multicolumna. 4º Parámetro: -nil/codeblock: la funcionalidad es exactamente la misma que ASort(...) -nColNo: Ordena en ...
by goosfancito
Sun Aug 20, 2023 1:16 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2023 (FWH 23.04)
Replies: 4
Views: 1678

Re: New FTDN April/Abril 2023 (FWH 23.04)

... por Cristóbal Navarro, muestra cómo reemplazar los botones de una ButtonBar. * Mejorado: Se ha mejorado la función FW_AReverse( aArray, [nStart], [nCount] ) --> aReversed. Usando los nuevos parámetros opcionales nStart y nCount, es posible restringir el rango de inversión. El array ...
by Antonio Linares
Thu May 04, 2023 6:37 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2023 (FWH 23.04)
Replies: 4
Views: 1678

New FTDN April/Abril 2023 (FWH 23.04)

... samples\barchange.prg, developed by Cristobal Navarro, shows how to replace the buttons of a ButtonBar. * Enhanced: function FW_AReverse( aArray, [nStart], [nCount] ) --> aReversed. Using the newly added optional parameters nStart and nCount, it is possible to restrict the range of reversal. ...
by Antonio Linares
Tue May 02, 2023 7:08 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2023 (FWH 23.04)
Replies: 4
Views: 1678

Re: New FTDN December/Diciembre 2022 (FW 22.12)

... valor fijo de 32. Muchas gracias a Ubiratan! http://fivetechsupport.com/forums/viewtopic.php?p=255649#p255649 * Nueva: Función FW_ASORT( aArray, [nStart], [nCount], [aColPos/bSort] ) --> aSorted Por defecto, funciona como la función ASort(), pero si el cuarto parámetro es una matriz con columnas ...
by Antonio Linares
Wed Jan 04, 2023 6:55 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN December/Diciembre 2022 (FW 22.12)
Replies: 5
Views: 1131

New FTDN December/Diciembre 2022 (FW 22.12)

... of previous fixed 32 value. Many thanks to Ubiratan! http://fivetechsupport.com/forums/viewtopic.php?p=255649#p255649 * New: FW_ASORT( aArray, [nStart], [nCount], [aColPos/bSort] ) --> aSorted By default, this works just as normal ASort(), but if the fourth parameter is an array of column ...
by Antonio Linares
Tue Jan 03, 2023 7:31 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN December/Diciembre 2022 (FW 22.12)
Replies: 5
Views: 1131

Re: New FTDN June/Junio 2022 (FWH 22.06)

... con todos los elementos en el orden inverso. Ejemplo: FW_AReverse( { 1, 2, 3, 4 } --> { 4, 3, 2, 1 } - Nueva: FW_RAEval( aArray, bBlock, [nStart], [nCount] ) Evalúa bBlock para cada fila como AEval() pero en el orden inverso desde el último elemento hasta el primero. Si se proporciona ...
by Antonio Linares
Tue Jun 21, 2022 8:45 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2022 (FWH 22.06)
Replies: 1
Views: 843

New FTDN June/Junio 2022 (FWH 22.06)

... of same length with all elements in the reverse order. Ex: FW_AReverse( { 1, 2, 3, 4 } --> { 4, 3, 2, 1 } - New: FW_RAEval( aArray, bBlock, [nStart], [nCount] ) Evaluates bBlock for every row like AEval() but in the reverse order from last element to the first element. If the optional parameter ...
by Antonio Linares
Tue Jun 21, 2022 4:31 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2022 (FWH 22.06)
Replies: 1
Views: 843

Re: Leer Excel XLSX grande a un array o DBF

... LOCAL cMsgRun := "Procedure in execution; please Wait...", cMsgArrayData := "Creating CSV array data; please wait..." LOCAL nStart := Seconds(), nEnd, aData := {}, cText := "", cMsgMemo := "Reading CSV data source; please wait..." //=================================================================================================================== ...
by George
Sat Feb 05, 2022 4:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Leer Excel XLSX grande a un array o DBF
Replies: 12
Views: 1193

Re: Dividir Un Array

aCopy es la manera más rápida de hacer eso: ACopy() Copy elements from one array to another Syntax ACopy( <aSource>, <aTarget>, [<nStart>], [<nCount>], [<nTargetPos>] ) → aTarget Arguments aSource is the array to copy elements from. aTarget is the array to copy elements ...
by hmpaquito
Fri May 21, 2021 11:01 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Dividir Un Array "SOLUCIONADO"
Replies: 5
Views: 564

Re: Ordenar solo una parte de un array

ASort() Posted on January 7, 2014 by vivaclipper ASORT() Sort an array Syntax ASORT( <aArray>, [<nStart>], [<nCount>], [<bSort>] ) --> aArray Arguments <aArray> Array to be sorted. <nStart> The first element to start the sort from, default ...
by hmpaquito
Thu Feb 25, 2021 9:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ordenar solo una parte de un array
Replies: 2
Views: 230

Re: AT( ) Function. Harbour vs xHarbour

Using Harbour, AT() only supports the first two parameters and will error if the nStart is specified.

Yes.
Function HB_AT(...) of Harbour is equivalent to the function AT() of XHarbour.

But if you link xhb.lib, using AT(...) with Harbour also give the same results.
by nageswaragunupudi
Sat Feb 13, 2021 2:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: AT( ) Function. Harbour vs xHarbour
Replies: 1
Views: 305

AT( ) Function. Harbour vs xHarbour

... some legacy code orignially developed with xHarbour. The AT() function in xHarbour has this syntax: At( <cSearch>, <cString>, [<nStart>], [<nEnd>] ) --> nPos Using Harbour, AT() only supports the first two parameters and will error if the nStart is specified. Is there ...
by TimStone
Fri Feb 12, 2021 11:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: AT( ) Function. Harbour vs xHarbour
Replies: 1
Views: 305

Re: Search text in textfile

Code: Select all  Expand view
At( <cSearch>, <cString>, [<nStart>], [<nEnd>] ) --> nPos


Please note: for best result you have to use nPos and update nStart accordingly.

EMG
by Enrico Maria Giordano
Thu Jul 02, 2020 5:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Search text in textfile
Replies: 1
Views: 495
Next

Return to advanced search

cron