Search found 133 matches: salary

Return to advanced search

Re: phpBB to LLM

This is the type of csv file that we have to generate from a DBF: customer.csv ID,FIRST,LAST,STREET,CITY,STATE,ZIP,HIREDATE,MARRIED,AGE,SALARY,NOTES 1,Homer,Simpson,32179 Maiden Lane,Springfield,IL,20503-8202,1992-09-18,True,50,5900.0,This is a test for record 1 2,Ceci,Gibbard,9540 Raynes ...
by Antonio Linares
Fri Dec 22, 2023 6:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: phpBB to LLM
Replies: 33
Views: 4693

Xbrowser() setting not found

... possible at a specific location. use customer XBROWSER "CUSTOMER" COLUMNS "STATE", "AGE", "MARRIED", "SALARY" SETUP ( ; oBrw:lHScroll := .f.,; oBrw:lVScroll := .f.,; oBrw:lToolbar := .f.,; // not ok oBrw:lFullGridClr := .t.,; oBrw:lIncrFilter := ...
by Marc Venken
Wed Aug 30, 2023 10:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowser() setting not found
Replies: 1
Views: 184

Re: Summation by condition

... := { |v,o| o:Value % 2 == 1 }, ; oBrw:State:nFooterType := AGGR_COUNT, ; oBrw:State:bSumCondition := { |v,o| "A" $ o:Value }, ; oBrw:Salary:nFooterType := AGGR_SUM, ; oBrw:Salary:bSumCondition := { || .NOT. FIELD->MARRIED }, ; //oBrw[6]:sel:bSumCondition := { || ( oBrw:cAlias )->selected ...
by Marc Venken
Fri Jun 02, 2023 11:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Summation by condition
Replies: 2
Views: 184

Re: XBROWSE FIELDS with Name in Array

hi,
nageswaragunupudi wrote:Comma delimited
Eg: "FIRST,CITY,SALARY,..."

thx for Answer

nageswaragunupudi wrote:We can easily convert an array like DbStruct() to list like this:
FW_ArrayAsList( ArrTranspose( aStruct )[ 1 ] )

ah, that is nice :)
by Jimmy
Tue May 02, 2023 3:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE FIELDS with Name in Array
Replies: 12
Views: 789

Re: XBROWSE FIELDS with Name in Array

how does"cFieldList" look like and what Delimiter is used :?:


Comma delimited
Eg: "FIRST,CITY,SALARY,..."

We can easily convert an array like DbStruct() to list like this:
FW_ArrayAsList( ArrTranspose( aStruct )[ 1 ] )
by nageswaragunupudi
Tue May 02, 2023 3:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE FIELDS with Name in Array
Replies: 12
Views: 789

Re: Xbrowse : oBrw:ToArray (How to do it)

For example, if we are browsing customer.dbf
Code: Select all  Expand view
XbrToArray( oBrw. { "FIRST", "CITY", "SALARY" }

where FIRST, CITY, SALARY are headers of the required columns.
by nageswaragunupudi
Thu Apr 13, 2023 10:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : oBrw:ToArray (How to do it)
Replies: 13
Views: 957

Re: Mr. Rao Pls your help

Buenas noches Mr Rao, que bueno se podría totaliza en la cabecera del grupo el total del SALARY?
Seria interesante
Saludos
by Marcelo Roggeri
Sun Apr 17, 2022 10:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao Pls your help
Replies: 12
Views: 1652

Re: No funcionan los Ejemplos TWeb

This way it should work: 'salary' => Alltrim(transform( (cAlias)->salary,"@Z 999999.99" ) ) }) look into the console F!2 for ( n = 0; n < data.length; n++) { console.log( parseFloat( data[n].salary ) ); console.log("--"); ...
by Otto
Sun Aug 29, 2021 6:23 pm
 
Forum: mod_harbour
Topic: No funcionan los Ejemplos TWeb
Replies: 26
Views: 3569

Re: funcion FW_CdxCreate() (SOLUCIONADO)

... that we keep index on FIRST,LAST and CITY for customer.dbf in the customer.cdx on the disk. Now, we want to browse fields FIRST,CITY,STATE,AGE,SALARY. Out of the 5 columns we have index on FIRST and CITY only. But we like the browse to autosort on STATE and AGE also. Then we can do: USE CUSTOMER ...
by nageswaragunupudi
Tue Apr 13, 2021 12:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funcion FW_CdxCreate() (SOLUCIONADO)
Replies: 4
Views: 572

Re: fieldWBlock

... ,; "CITY" ,; "STATE" ,; "ZIP" ,; "HIREDATE",; "MARRIED" ,; "AGE" ,; "SALARY" ,; "NOTES" } this Run ok if I wish print a barcode nCampo:= 2FIELDWBLOCK( ncampo, SELECT( "CUST" ) ) ...
by Silvio.Falconi
Wed Nov 18, 2020 2:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: fieldWBlock
Replies: 13
Views: 1208

Re: Program techniques : change indexorder or use aliases

... FW_DBFLOOKUP( 108, "ID", "AGE" ) ) --> nAge of ID 108 CUSTOMER->( FW_DBFLOOKUP( 99, "ID", "FIELD->SALARY += 100" ) ) --> Salary field is incremented and written to table and returns the value ITEMS->( FW_DBLOOKUP( 101, "ITEMCODE", ...
by Marc Venken
Wed Nov 04, 2020 11:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Program techniques : change indexorder or use aliases
Replies: 4
Views: 679

Mister Nages, ayuda xbrowse, repxb01.prg

... las posiciones decimales con Xbrowse to Excel... (utilizo calc de LibreOffice) También con el ejemplo repxb01.prg me ocurre lo mismo, la columna SALARY no lo envía al fichero XLS en formato numerico Gracias por vuestra ayuda, saludos, [img] https://i.ibb.co/rxhpWMp/report.png ...
by Jorge_T
Sat Oct 24, 2020 6:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mister Nages, ayuda xbrowse, repxb01.prg
Replies: 5
Views: 764

Re: nCounter Report not run ok

... SIZE 5          COLUMN TITLE "Age" DATA ( cAlias )->AGE PICTURE "9999" RIGHT          COLUMN TITLE "Salary" DATA ( cAlias )->SALARY  PICTURE "99,999,999.99" RIGHT  TOTAL             GROUP ON ( cAlias )->STATE ;  ...
by artu01
Sat Oct 10, 2020 4:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: nCounter Report not run ok RESOLVED
Replies: 18
Views: 1242

Re: nCounter Report not run ok

... COLUMN TITLE "Age" DATA ( cAlias )->AGE PICTURE "9999" RIGHT          COLUMN TITLE "Salary" DATA ( cAlias )->SALARY  PICTURE "99,999,999.99" RIGHT  TOTAL             GROUP ...
by Silvio.Falconi
Thu Oct 08, 2020 6:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: nCounter Report not run ok RESOLVED
Replies: 18
Views: 1242

Re: New FTDN August/Agosto 2020 (FWH 20.08)

... Esto hace posible tener una alineación para el título de la columna diferente de las DATAs de la columna. Ejemplo de uso: COLUMN oCol TITLE "SALARY" DATA FIELD->SALARY FONT 1 oCol:nAlignTitle := RPT_CENTER Ahora el título se muestra centrado, mientras que los datos se alinean a la ...
by Antonio Linares
Tue Sep 22, 2020 4:33 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN August/Agosto 2020 (FWH 20.08)
Replies: 3
Views: 2304
Next

Return to advanced search