Search found 251 matches: fieldget

Return to advanced search

Re: come recuperare il codice fivewin da .c file

... 1, HB_P_PUSHSTRSHORT, 4, /* 4 */ ' ', '=', ' ', 0, HB_P_PLUS, HB_P_PUSHSYMNEAR, 8, /* CVALTOCHAR */ HB_P_PUSHNIL, HB_P_PUSHSYMNEAR, 9, /* FIELDGET */ HB_P_PUSHNIL, HB_P_ONE, HB_P_FUNCTIONSHORT, 1, HB_P_FUNCTIONSHORT, 1, HB_P_PLUS, HB_P_ARRAYGEN, 1, 0, /* 1 */ HB_P_DOSHORT, 1, /* 00103 ...
by Antonio Linares
Mon Feb 12, 2024 9:55 pm
 
Forum: All products support
Topic: come recuperare il codice fivewin da .c file
Replies: 7
Views: 321

Re: RAO advice on using Mysql

... KeyCount(),RecNo(), KeyNo() GoTop(),GoBottom(),GoTo(nRec),KeyGoTo(nKey),Skip(n) FCount(),FieldPos(c),FieldName(),FieldLen(),FieldDec(),FieldType() FieldGet(),FieldPut() SetOrder(cSort,,lDescend) Save() Close() or End() --------------- NOT SUPPORTED: Seek(), Filter(),Delete(),Append() The RecSet ...
by nageswaragunupudi
Fri Feb 02, 2024 12:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO advice on using Mysql
Replies: 12
Views: 855

Re: xbrowser, ordenar una columna del tipo "C"

puedes probar esto, ver si funciona

PADL(::oQry:FieldGet( "c4"), 2, "0")

Substr( PADL(::oQry:FieldGet( "c4"), 2, "0"),1,2)

o

PADL(alltrim(::oQry:FieldGet( "c4")), 2, "0")
by solving
Wed Jan 31, 2024 5:55 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowser, ordenar una columna del tipo "C"
Replies: 3
Views: 167

Re: Request For TDataRow Example for MariDB

Dear Sir ,

Not able to access value by using FieldGet Method as given below.

Code: Select all  Expand view


    oRec := TDataRow():New( oRsList )
 
    ALERT(" acgrp_name ==> "+oRec:FieldGet("ACGRP_NAME") )

 


Thanks
Shridhar
by shrifw
Tue Aug 01, 2023 4:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Request For TDataRow Example for MariDB
Replies: 4
Views: 269

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

...     IF AScan( aValues, {|x| Valtype(x) <> "O" } ) > 0         AEval( aValues, {|x,i| x:=FieldGet(i) },,, .T. )      ELSE         AEval( aValues, {|o| o:setData() } )      ENDIF   ENDIFRETURN aValues ...
by Jimmy
Wed May 24, 2023 5:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: AEVAL() : Get Value of FIELD using FieldGet(i)
Replies: 4
Views: 171

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: 171

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

... regards, Otto https://harbour.github.io/doc/  Can you please explain how this works:AEval( aValues, {|x,i| aValues[ i ] := FieldGet(i) } )'ChatGPTThe function you're asking about appears to be from Harbour, a language that's an open-source implementation ...
by Otto
Tue May 23, 2023 6:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: AEVAL() : Get Value of FIELD using FieldGet(i)
Replies: 4
Views: 171

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: 171

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

hi,

why thy Syntax does not work
Code: Select all  Expand view
  * AEval( aValues, {|x,i| x := FieldGet(i) } )


i have to use FOR NEXT loop
Code: Select all  Expand view
   iMax := LEN(aValues)
   FOR ii := 1 TO iMax
      aValues[ii] := FieldGet(ii)
   NEXT
by Jimmy
Tue May 23, 2023 3:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: AEVAL() : Get Value of FIELD using FieldGet(i)
Replies: 4
Views: 171

Re: FieldGet() no recupera bien dato NUMERIC de tabla ADT

Jose

Gracias por el dato, esta super

Rolando
by RSalazarU
Sat Mar 11, 2023 10:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FieldGet() no recupera bien dato NUMERIC de tabla ADT
Replies: 5
Views: 339

Re: FieldGet() no recupera bien dato NUMERIC de tabla ADT

RSalazarU wrote:Jose

Gracias por responder

>>La unica solucion que encontre fue grabar los numeros en campos alfanunericos y hacerme las funciones de conversion.

si, al parecer es la unica solucion.


Dale una mirada a este hilo.
by JoseAlvarez
Sat Mar 11, 2023 4:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FieldGet() no recupera bien dato NUMERIC de tabla ADT
Replies: 5
Views: 339

Re: FieldGet() no recupera bien dato NUMERIC de tabla ADT

Jose

Gracias por responder

>>La unica solucion que encontre fue grabar los numeros en campos alfanunericos y hacerme las funciones de conversion.

si, al parecer es la unica solucion.
by RSalazarU
Sat Mar 11, 2023 1:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: FieldGet() no recupera bien dato NUMERIC de tabla ADT
Replies: 5
Views: 339

Re: FieldGet() no recupera bien dato NUMERIC de tabla ADT

Saludos.

Hace tiempo tuve un problema parecido.
La unica solucion que encontre fue grabar los numeros en campos alfanunericos y hacerme las funciones de conversion.
by JoseAlvarez
Fri Mar 10, 2023 11:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FieldGet() no recupera bien dato NUMERIC de tabla ADT
Replies: 5
Views: 339

FieldGet() no recupera bien dato NUMERIC de tabla ADT

... su metodo Load() tiene la instruccion:       for n = 1 to Len( ::aBuffer )         ::aBuffer[ n ] = ( ::nArea )->( FieldGet( n ) )      next  Entiendo que las tablas DBF en campos numericos solo aceptan 19 digitos Pero con ADS (segun el manual) dice que ...
by RSalazarU
Fri Mar 10, 2023 7:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FieldGet() no recupera bien dato NUMERIC de tabla ADT
Replies: 5
Views: 339
Next

Return to advanced search