Search found 557 matches: seconds

Return to advanced search

Re: Problem with FiveWin and PDF995 on Windows 11.

... with the following code: Function TestHaru() Local oPrn := nil Local oFont := nil Local cFile := Mcs_AppPath() + "TestPdf" + nAllTrim( Seconds()) + ".Pdf" Print oPrn File cFile Define Font oFont Name "Arial" Size 0,-14 of oPrn oPrn:lUseHaruPDF := TRUE Page oPrn:InchSay( ...
by byron.hopp
Tue Feb 13, 2024 10:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with FiveWin and PDF995 on Windows 11.
Replies: 29
Views: 1186

Re: Mr. Rao, refresh a Tree

Mr. Rao:

This is my video, it is 18 seconds, if you consider it necessary, I will send you my entire PRG, help me please.

Greetings

https://files.fm/u/u25vv7ebbv
by Armando
Fri Feb 09, 2024 12:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao, refresh a Tree
Replies: 21
Views: 708

Re: How to convert a Date to an Unix TimeStamp?

... built-in functions UNIX_TIMESTAMP( <datetime> ) FROM_UNIXTIM( nUnixTime ) Please note that in this case unix timestamp or in Seconds. Not milli seconds. We need to take care of conversions. Please note that FWH functions deal with the UnixTime in millliseconds whereas MySql ...
by nageswaragunupudi
Mon Jan 29, 2024 1:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to convert a Date to an Unix TimeStamp?
Replies: 8
Views: 561

Re: How to convert a Date to an Unix TimeStamp?

... Please keep in mind that the FWH functions deal with Unix time in MilliSeconds. Not seconds. Depending on the requirement, you need to provide the conversion ( *1000 or /1000 )
by nageswaragunupudi
Mon Jan 29, 2024 1:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to convert a Date to an Unix TimeStamp?
Replies: 8
Views: 561

Re: DateTime calculation

... and the answer seems fine :-) (not exactly correct, but the explanation seems fine) Yes, it looks like the timestamp you provided is in milliseconds since the Unix epoch. To convert a Harbour date variable into a Unix timestamp expressed in milliseconds, you need to follow these steps: Get ...
by Antonio Linares
Sat Jan 27, 2024 7:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DateTime calculation
Replies: 6
Views: 682

Re: Consuta sobre MariaDB/MySql

... Thank you Mr. Nages The problem with cloud servers is that they only allow connections for a few seconds. In my case the maximum is 15 seconds, after that they close the connections. If I keep it "alive" by "pinging", a lot of ...
by JoseAlvarez
Tue Jan 23, 2024 4:07 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consuta sobre MariaDB/MySql
Replies: 8
Views: 453

Re: Soap Web Service - timeout request

Hi Antonio, Thank you. Question, if I set nSecs = 5 and responses comes back faster, will it still wait 5 seconds or process immediately? Does not wait. Processes immediately. Also for additional information: httprequest method SetTimeOuts( nResolveTimeOut, nConnectTimeOut, ...
by nageswaragunupudi
Tue Jan 09, 2024 4:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Soap Web Service - timeout request
Replies: 4
Views: 694

Re: Soap Web Service - timeout request

Hi Antonio,
Thank you. Question, if I set nSecs = 5 and responses comes back faster, will it still wait 5 seconds or process immediately?
by cdmmaui
Tue Jan 09, 2024 12:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Soap Web Service - timeout request
Replies: 4
Views: 694

Re: phpBB to LLM

... in fine-tuned model. train.py executed It is striking that after around 300 runs the performance drops extremely, with < 200 runs < 2.4 seconds and with the 300th run it is already 5 seconds. CPU utilization 10% and 12.3GB RAM Training after 40 minutes with 500 runs - first output. Process ...
by alerchster
Wed Dec 27, 2023 8:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: phpBB to LLM
Replies: 33
Views: 4656

Re: How To Make XLSX File With Harbour

... I tested with a DBF with 100,000 records with 30 large fields and it is exported to XLSX in about 5 seconds. More information to follow. Great!
by Horizon
Sat Aug 19, 2023 4:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How To Make XLSX File With Harbour
Replies: 10
Views: 914

Re: How To Make XLSX File With Harbour

... I tested with a DBF with 100,000 records with 30 large fields and it is exported to XLSX in about 5 seconds. More information to follow.
by nageswaragunupudi
Fri Aug 18, 2023 3:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How To Make XLSX File With Harbour
Replies: 10
Views: 914

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

...     oClip:Close()   ENDIF   oClip:End()RETURN nil FUNCTION SEC2HMS() // Jimmy send me this FUNCTION not need, just to convert Seconds to HHMMSS FUNCTION Sec2HMS( nSec )LOCAL cHHMMSS := ""LOCAL nInt    := 0LOCAL nHH     := 0LOCAL nMM     := 0LOCAL nSS     := ...
by Jimmy
Tue Aug 15, 2023 6:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to Excel Sheet, without Excel, using ADO ?
Replies: 50
Views: 2564

Re: dialog opening difference in the monitor between 32/64 bit

... 2 ):Center( oDlg )return oDlg The main window is opened in the primary monitor. Clicking "Open" button opens a dialog in the Seconds monitor. Here this is working with both 32/64 bits. Can you please provide us with a small sample code that works with 32bit but fails with ...
by nageswaragunupudi
Mon Aug 07, 2023 7:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: dialog opening difference in the monitor between 32/64 bit
Replies: 4
Views: 459

Re: Assigning lUseHaruPdf when TPrinter is sub-classed

I tested this program to generate 200 pdf files silently and all 200 files were created in 1.1 seconds and no crash, no errors and no log files about excess font release. I have used native fwh library without modifications. I tested it with FWH1912. #include "fivewin.ch"REQUEST ...
by nageswaragunupudi
Sat Aug 05, 2023 9:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Assigning lUseHaruPdf when TPrinter is sub-classed
Replies: 18
Views: 884

Re: seconds() function

SECONDS() function gives time accurate upto milli seconds.
by nageswaragunupudi
Fri Jul 28, 2023 2:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: seconds() function
Replies: 1
Views: 236
Next

Return to advanced search