Search found 69 matches: avalues

Return to advanced search

Re: Fivewin and ADO

... cut for AEval( oBrw:aCols, { |o| o:anydata := uVal } )  Note: anydatas = 'anydata' + 's' is plural of 'anydata' oBrw:anydatas := aValues is short cut for for n := 1 to Len( aValues )   oBrw:oCol( n ):anydata := aValues[ n ] next  where oBrw:oCol( n ) --> ...
by nageswaragunupudi
Fri Jun 09, 2023 8:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin and ADO
Replies: 36
Views: 3802

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

... "on-fly" to XBROWSE --- instead of APPEND to DBF i want to "show" Data using XBROWSE                SELECT 1               aValues := Scatter() // FieldGet()               AADD(aData,aValues)  // add for XBROWSE#IFDEF Use_Append               SELECT 2    ...
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: AEVAL() : Get Value of FIELD using FieldGet(i)

hi Antonio,
Antonio Linares wrote:Please try it this way:
AEval( aValues, {|x,i| aValues[ i ] := FieldGet(i) } )

ok, that work thx
by Jimmy
Wed May 24, 2023 4:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: AEVAL() : Get Value of FIELD using FieldGet(i)
Replies: 4
Views: 182

Re: AEVAL() : Get Value of FIELD using FieldGet(i)

Dear Jimmy,

Please try it this way:

AEval( aValues, {|x,i| aValues[ i ] := FieldGet(i) } )
by Antonio Linares
Tue May 23, 2023 5:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: AEVAL() : Get Value of FIELD using FieldGet(i)
Replies: 4
Views: 182

Re: SkinButton() Problem

hi, What if you use HB_AParams() --> <aValues> ? thx for Answer the "Problem" is NOT any Parameter. you will "get" the Problem when press Button while Skinbutton() is "active" than it will crash my HB_FUNC() ...
by Jimmy
Mon Apr 17, 2023 6:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SkinButton() Problem
Replies: 19
Views: 960

Re: SkinButton() Problem

What if you use HB_AParams() --> <aValues> ?

Regards, saludos.
by karinha
Sun Apr 16, 2023 12:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SkinButton() Problem
Replies: 19
Views: 960

Re: WBrowse - color fondo cabecera y Congelar columnas- consulta

... aJustify != nil .and. aJustify[ n ] SetTextAlign( hDC, TA_RIGHT ) ExtTextOut( hDC, nTop, nRight - 2, { nTop, nLeft, nBottom, nRight }, cValToChar( aValues[ n ] ) ) else SetTextAlign( hDC, TA_LEFT ) ExtTextOut( hDC, nTop, nLeft + 2, { nTop, nLeft, nBottom, nRight }, cValToChar( aValues[ n ] ) ) ...
by José
Tue Mar 21, 2023 2:33 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: WBrowse - color fondo cabecera y Congelar columnas- consulta
Replies: 6
Views: 617

Know a state of checkbox

...                  "Venezia","Nazionale","Tutte"}   local aValues := Array( 12 )   local nRow:=30   local nCol:= 5   local nSize1:= 50   local nSize2:= 10local nBottom   := 44   local nRight    := 110  ...
by Silvio.Falconi
Mon Nov 21, 2022 4:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Know a state of checkbox
Replies: 2
Views: 306

Re: New FTDN March/Marzo 2022 (FWH 22.03)

... <a> and <b>". Solucionado. * Solucionado: FW_SaveImage(): Se han eliminado los mensajes de rastreo. * Mejora: FW_DBINSERT( [<aValues>] ) Proporciona la misma funcionalidad que el comando INSERT de DBase, que no es soportado por Clipper/Harbour. Adecuado para ficheros dbfs ...
by Antonio Linares
Mon Apr 11, 2022 4:11 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN March/Marzo 2022 (FWH 22.03)
Replies: 1
Views: 624

New FTDN March/Marzo 2022 (FWH 22.03)

... "<fld> not between <a> and <b>". fixed. * Fix: FW_SaveImage(): Trace messages removed. * Enhanced: FW_DBINSERT( [<aValues>] ) Provides same functionality as INSERT command of DBase, which is not supported by Clipper/Harbour. Suitable for small dbfs. Inserts a ...
by Antonio Linares
Sun Apr 10, 2022 7:02 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN March/Marzo 2022 (FWH 22.03)
Replies: 1
Views: 624

Re: funcion FW_CdxCreate() (SOLUCIONADO)

... or enhances, it is explained in whatsnew.txt: Extracts from Whatsnew.txt: FWH1409: * New: database.prg: New functions: 1)FW_FieldsPut( caFields, aValues, [nLockWaitSecs], [lAppend] ) --> nRecNo ( 0 if failure) ... 2)FW_CdxCreate( [caTagList] ) 3)FW_DBFSTRUCT( cDbfFile ) --> dbstruct() // ...
by nageswaragunupudi
Tue Apr 13, 2021 12:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funcion FW_CdxCreate() (SOLUCIONADO)
Replies: 4
Views: 572

Re: Editar RowSet con dos tablas - At. Mr. Rao

... ... oRs:Save() OR b) oRs:Update( cFieldList, aNewVAlues ) 2) Directly writing to table without opening as RowSet a) oCn:Update( table, fieldlist, aValues ) b) oCn:Insert( table, fieldlist, aValues ) c) oCn:Upsert( table, fieldlist, aValues ) Whatever way you write data, you can enclose in Beging/Commit ...
by Horizon
Wed May 27, 2020 12:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Editar RowSet con dos tablas - At. Mr. Rao
Replies: 15
Views: 3005

Re: Editar RowSet con dos tablas - At. Mr. Rao

... ... oRs:Save() OR b) oRs:Update( cFieldList, aNewVAlues ) 2) Directly writing to table without opening as RowSet a) oCn:Update( table, fieldlist, aValues ) b) oCn:Insert( table, fieldlist, aValues ) c) oCn:Upsert( table, fieldlist, aValues ) Whatever way you write data, you can enclose in Beging/Commit ...
by Horizon
Wed May 27, 2020 11:59 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Editar RowSet con dos tablas - At. Mr. Rao
Replies: 15
Views: 3005

Re: Cómo conocer el siguiente folio?

Armando. como estas, prueba esto

aCampos:={ 'cod_interno'ion'' }
aValues:={ CodControl }
xServer:Insert("ventadiaria", aCampos, aValues )

oQryId := xServer:Query( "SELECT last_insert_id() AS nId")
nReserva := oQryId:nId

saludos
by jbrita
Fri Feb 28, 2020 12:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cómo conocer el siguiente folio?
Replies: 9
Views: 1636

Xbrowse, Mysql y Tdolphin.. error de orden..

... cEmpresa) LOCAL oGets:= Array( 05 ), aGets:= Array( 05 ) Local oBtns:= Array( 05 ) Local oBmp,oDlg1,oFont1 LOCAL lAceptar := .F. Local aCampos,aValues,aWhere, lAppend Local cStock1 :=0, oStock1 Local cStock2 :=0, oStock2 Local cStock3 :=0, oStock3 Local cStock4 :=0, oStock4 cStock1:=cTab_Art:in1_art ...
by kpidata
Tue Dec 17, 2019 12:20 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Xbrowse, Mysql y Tdolphin.. error de orden..
Replies: 1
Views: 811
Next

Return to advanced search