Search found 124 matches: diff

Return to advanced search

Re: DBF to Excel Sheet, without Excel, using ADO ?

... N, 17, 2, 5, .T.}, {STPREIS, N, 17, 2, 5, .T.}, {CODE, C, 255, 0, 202, .T.}, {GEWICHT, N, 17, 2, 5, .T.}, {ORGBESTAND, N, 17, 2, 5, .T.}, {DIFF, N, 17, 2, 5, .T.}, {WERT, N, 17, 2, 5, .T.}, {NEUBESTAND, N, 17, 2, 5, .T.}, {BPREIS1, N, 17, 2, 5, .T.}, {BPREIS2, N, 17, 2, 5, .T.}, {BPREIS3, ...
by Jimmy
Wed Aug 09, 2023 2:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to Excel Sheet, without Excel, using ADO ?
Replies: 50
Views: 2564

Re: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?

... vkgesamt, NIL, NIL}, {gewicht, N, 8, 2, 16820, 18, artikel, epreis, NIL, NIL}, {orgbestand, N, 11, 2, 16820, 19, artikel, kkpreis, NIL, NIL}, {diff, N, 11, 2, 16820, 20, artikel, ststueck, NIL, NIL}, {wert, N, 14, 2, 16820, 21, artikel, stpreis, NIL, NIL}, {neubestand, N, 9, 2, 16820, 22, artikel, ...
by Jimmy
Thu Aug 03, 2023 8:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?
Replies: 21
Views: 716

Crash with 23.04 GRADIENTFILL()

... 5930 )   Called from: .\DUALGRID.PRG => (b)MAIN( 916 ) https://i.postimg.cc/SRMNDyKN/Gradiend-Fill-Diff.jpg have made a Copy of "old" Source and it work again
by Jimmy
Sun Jul 23, 2023 1:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Crash with 23.04 GRADIENTFILL()
Replies: 5
Views: 313

Disk activity when using a record

I wonder... (Antonio, ChatGPT is not accessible, to much hits at this time ))))) When a dbf is on a record I have the (BAD) habit of doing calculations like : nAankoop = artikel->new_bruto - (artikel->new_bruto * artikel->korting)/100 nAankoop = nAankoop - (new_bruto * artikel->korting2)...
by Marc Venken
Fri Feb 03, 2023 3:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disk activity when using a record
Replies: 1
Views: 226

Re: How many time my application is run in memory

Do you mean how long one of your programs has been running?

From powershell:

New-TimeSpan -Start (get-process <yourapplication>).StartTime

Internal to the program? I would just set a variable with DateTime() on entry, then diff that with current DateTime() to get total runtime of the app.
by rhlawek
Fri May 13, 2022 9:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How many time my application is run in memory (SOLVED)
Replies: 25
Views: 1152

Re: Definición Inteligencia artificial ...

Muy didactico, gracias :D

Sobre todo diff entre IA y machine learning...


C.
by Carles
Thu Jan 06, 2022 7:51 pm
 
Forum: Artificial Intelligence
Topic: Definición Inteligencia artificial ...
Replies: 2
Views: 559

Re: Adel

... https://vivaclipper.wordpress.com/2013/01/07/array-basics/ http://cch4clipper.blogspot.com/2011/05/harbourxharbour-diff-957.html Regards, saludos.
by karinha
Sat Sep 18, 2021 7:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Adel
Replies: 3
Views: 418

Re: Minutes calculation

Silvio, // Return the absolute difference between two times in hh:mm:ss format // in character hours, minutes and seconds (hh:mm:ss). // TIME_DIFF( "22:40:12", "23:55:17" ) -> 01:15:05 // TIME_DIFF( "23:55:17", "22:40:12" ) -> 01:15:05 ( convert to minut...
by ukoenig
Mon Sep 16, 2019 8:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Minutes calculation- RESOLVED
Replies: 7
Views: 1273

Re: FWH 18.11: MARIAROWSET Table Replication Features

... cTable, oDestServer, cTimeStampFld ) --> lSuccess Will Replication manage automatically, if Table Structure columns count is diff between source and target ? e.g. source table has extra column compare to target table Thanks Shridhar
by shri_fwh
Fri Nov 30, 2018 11:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 18.11: MARIAROWSET Table Replication Features
Replies: 11
Views: 2661

Building Harbour 3.4 for BCC outside MSYS

... is required because developers no longer support Borland compilers. Patches are very minimal, no functionality is affected. You may inspect the *.diff files on patches folders. Patches are available at: http://www.mediafire.com/file/6573m6tdgwizvid/patches.zip Unzip the patches ...
by andijahja
Sat Nov 25, 2017 12:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Building Harbour 3.4 for BCC outside MSYS
Replies: 87
Views: 17191

Re: understanding OOP returning more than value from a method

Thanks.

Will do some more testing with diff. dates, but seems pretty OK !

I just had to change

// Not fully tested
Method AgeDays() Class TPlayer
Local nDays
//Return DOM( date() )
Return day( date() )

DOM = a function of yours ? Is the change correct ?
by Marc Venken
Wed Oct 18, 2017 7:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: understanding OOP returning more than value from a method
Replies: 14
Views: 3095

Re: CALCULAR MESES ENTRE 2 PERIODOS

Aca te dejo una forma mas exacta usando la fecha completa, de la forma que te lo coloco ya lo probe con diferentes fechas, has las pruebas de fuego...saludos... :shock: SELECT PERIOD_DIFF( DATE_FORMAT('2017-04-15', '%Y%m'), DATE_FORMAT('2018-06-12', '%Y%m') ) http://mysql.conclase.net/curso/?sqlfun=...
by joseluisysturiz
Fri Aug 04, 2017 3:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO
Replies: 10
Views: 1617

Re: CALCULAR MESES ENTRE 2 PERIODOS

... funcion...saludos... :shock: Manejadores de fechas en mysql https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_period-diff
by joseluisysturiz
Fri Aug 04, 2017 3:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO
Replies: 10
Views: 1617
Next

Return to advanced search