Search found 260 matches: aarray

Return to advanced search

Re: xbrowse No existe el metodo: LREADONLY

Hola Jesus. estas modificando aArray, pero como está definido como variable local y no lo devuelves a la función que lo llama, es posible que te dé un error. Como vez estoy pasando el parametro oBrw a la funcion y le asigno el valor del ...
by JoseAlvarez
Sun Mar 03, 2024 8:26 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse No existe el metodo: LREADONLY
Replies: 16
Views: 469

Re: xbrowse No existe el metodo: LREADONLY

... are using XBrowse without any modifications? Is it possible to have simple reduced sample, which we can try at our end? Code: *** oBrw:SetArray( aArray) <------------ no volver a asignar oBrw:aArrayData = aArray <------------ actualiza datos y refresca oBrw:Refresh() This is what I suggest ...
by nageswaragunupudi
Sat Mar 02, 2024 2:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse No existe el metodo: LREADONLY
Replies: 16
Views: 469

Re: xbrowse No existe el metodo: LREADONLY

Hola Jesus. estas modificando aArray, pero como está definido como variable local y no lo devuelves a la función que lo llama, es posible que te dé un error. Como vez estoy pasando el parametro oBrw a la funcion y le asigno el valor del ...
by albeiroval
Fri Mar 01, 2024 7:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse No existe el metodo: LREADONLY
Replies: 16
Views: 469

Re: xbrowse No existe el metodo: LREADONLY

Buenas tardes En esta función .... static function GetUsuarios_FS84( aArray, oBrw )    Local i    Local nLen := Len(aArray)         for i:=1 TO nLen      aArray[i,3] := GetName_IDEmpleado( aArray[i,2] )  // Agrega Nombre ...
by JESUS MARIN
Fri Mar 01, 2024 7:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse No existe el metodo: LREADONLY
Replies: 16
Views: 469

Re: Insert an record on array

Dear Silvio, Arguments aArray The array name into which the value xValue will be inserted. nPos Subscript position in aArray. Default: 1st position xValue Value to be inserted lAutoSize Boolean flag to increase or not the size of aArray. ...
by Silvio.Falconi
Mon Jan 15, 2024 9:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Insert an record on array
Replies: 4
Views: 827

Re: Insert an record on array

Dear Silvio, Arguments aArray The array name into which the value xValue will be inserted. nPos Subscript position in aArray. Default: 1st position xValue Value to be inserted lAutoSize Boolean flag to increase or not the size of aArray. ...
by Antonio Linares
Sun Jan 14, 2024 6:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Insert an record on array
Replies: 4
Views: 827

Re: SetArray xBrowser

oBrowser:aArrayData :=aArray
by JoseAlvarez
Tue Dec 12, 2023 3:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SetArray xBrowser
Replies: 5
Views: 516

SetArray xBrowser

... Browser like the xBrimag3.prg example, but built with Array. When searching the database, I build a new array, and then empty the array - oBrowser:aArrayData := {}, try to reload the array by giving a SetArray - oBrowser:SetArray( aArray ), and then renew obrowser - oBrowser: Refresh(). However, ...
by oliveiros junior
Tue Dec 12, 2023 3:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetArray xBrowser
Replies: 2
Views: 275

SetArray xBrowser

... como el ejemplo xBrimag3.prg, pero construido con Array. Cuando busco en la base de datos, construyo una nueva matriz y luego la vacío - oBrowser:aArrayData := {}, intento recargar la matriz dando un SetArray - oBrowser:SetArray( aArray), y luego renuevo el navegador - oBrowser: Refresh (). Sin ...
by oliveiros junior
Tue Dec 12, 2023 3:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SetArray xBrowser
Replies: 5
Views: 516

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 ...
by goosfancito
Sun Aug 20, 2023 1:16 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2023 (FWH 23.04)
Replies: 4
Views: 1757

Re: new Array for XBROWSE -> only 1st Column ?

hi Otto, have you tried inserting some dummy data into your initial `aData`? LEN(aArray) is much bigger than 1 and "wide" is FCOUNT(). but with my CODE it show only 1st Column "A" when assign "on-fly" to XBROWSE --- instead of APPEND ...
by Jimmy
Thu May 25, 2023 7:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: new Array for XBROWSE -> only 1st Column ?
Replies: 7
Views: 320

Re: ASCAN reverse ?

Hi Jimmy, just use RAscan() :wink: // The example demonstrates the difference between AScan() and RAscan(). PROCEDURE Main() LOCAL aArray := { "A", 1, Date(), 1, .F. } ? Ascan( aArray, 1 ) // result: 2 ? RAScan( aArray, 1 ) // result: 4 RETURN Regards, Detlef p.s. du wohnst in ...
by Detlef
Wed May 17, 2023 2:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ASCAN reverse ?
Replies: 2
Views: 161

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

... desarrollado 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. ...
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: 1757

New FTDN April/Abril 2023 (FWH 23.04)

... * New: 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 ...
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: 1757

Re: to Excel : using Array and "paste" it

Yes. Very well known. aArray := oRange:Value for reading and oRange:Value := aArray for assigning "should" work. And work perfectly with VB. When it comes to Harbour and xHarbour there are some issues. We need to be aware of ...
by nageswaragunupudi
Sun Apr 23, 2023 7:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Excel : using Array and "paste" it
Replies: 3
Views: 271
Next

Return to advanced search