Search found 222 matches: slower

Return to advanced search

Re: ADS with 64bit FWH Apps

I don’t think those are needed. The last ADS release was 2015. Remote is useful but I find local is slower than the native rddcdx. I distribute the last .dll files they produced for 32 and 64 bit. Those are usually good with versions 10-12, except for 64 bit on 10 & 11. ...
by TimStone
Thu Apr 04, 2024 2:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADS with 64bit FWH Apps
Replies: 24
Views: 2253

Re: Question about performance RowSet

... takes a bit more time, because during creation it collects a lot other relevant information which makes usage faster. First time reading is a bit slower when compared to other libraries. Once opened, updates, inserts, deletes, sorts, filters, etc. are all extremely faster than the other libs. ...
by Eroni
Wed Mar 20, 2024 1:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 3979

Re: Question about performance RowSet

... takes a bit more time, because during creation it collects a lot other relevant information which makes usage faster. First time reading is a bit slower when compared to other libraries. Once opened, updates, inserts, deletes, sorts, filters, etc. are all extremely faster than the other libs. ...
by nageswaragunupudi
Sat Mar 16, 2024 10:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 3979

Re: FWH Gradiens .. seem slower FWH 2310 - RAO

Antonio

Thank you .. been a while since I have looked at those functions .. Your suggestion works!

Rick Lipkin
by Rick Lipkin
Sat Feb 24, 2024 6:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH Gradiens .. seem slower FWH 2310 - RAO
Replies: 2
Views: 174

Re: FWH Gradiens .. seem slower FWH 2310 - RAO

Dear Rick, In function LightGreyGrad() an array with just one element (one subarray) is used In function DarkGreyGrad() an array with two elements (two subarrays) is used so function DarkGreyGrad() is doing more work than function LightGreyGrad() Try with this code: function DarkGreyGrad()  ...
by Antonio Linares
Sat Feb 24, 2024 6:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH Gradiens .. seem slower FWH 2310 - RAO
Replies: 2
Views: 174

FWH Gradiens .. seem slower FWH 2310 - RAO

Rao As you know I use Functions to paint my screen Gradients .. for some reason the DarkGreyGrad() functions paints much slower than the LightGreyGrad) FUnction ... especially with FWH2310 ... older versions of FWH are not effected ... //--------------------Func DarkGreyGrad()SetDlgGradient({{ ...
by Rick Lipkin
Sat Feb 24, 2024 4:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH Gradiens .. seem slower FWH 2310 - RAO
Replies: 2
Views: 174

Re: Using Microsoft AI Phi-2 from FWH

We encourage you to try different GGUFs from HuggingFace until you find the best that works for you Orca2 large works very well though it is slower. Check for yourself the best one for you and please share your results here :-) There is a new project, based on llama.cpp, that works 12% faster ...
by Antonio Linares
Wed Dec 20, 2023 8:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using Microsoft AI Phi-2 from FWH
Replies: 51
Views: 8193

Re: SetDlgGradient

Rao

I am a bit perplexed ? ... These functions work just fine for me ... what have I done wrong or need to change ?

Thanks
Rick Lipkin

ps, I have noticed with newer versions of FWH that the above gradients paint slower than in previous versions of FWH
by Rick Lipkin
Fri Sep 29, 2023 12:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetDlgGradient
Replies: 10
Views: 794

Re: Announcing DrXlsx 1.0 by Charles Kwon

... ADO there is a *.XLSB but nothing when XLSwriter "crash" --- using a 64 Bit Apps ADO it is funny that my 64 Bit MSVC App work slower that 32 Bit BCC7 App ? cIn = "records in dbf: 351287" cIn = "imported recs: 351287" cIn = "Std 00:06:13" cIn = ...
by CharlesKwon
Sun Aug 27, 2023 4:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Announcing DrXlsx 1.0 by Charles Kwon
Replies: 32
Views: 3847

Re: Announcing DrXlsx 1.0 by Charles Kwon

... ADO there is a *.XLSB but nothing when XLSwriter "crash" --- using a 64 Bit Apps ADO it is funny that my 64 Bit MSVC App work slower that 32 Bit BCC7 App ? cIn = "records in dbf: 351287" cIn = "imported recs: 351287" cIn = "Std 00:06:13" cIn = ...
by Jimmy
Sun Aug 27, 2023 12:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Announcing DrXlsx 1.0 by Charles Kwon
Replies: 32
Views: 3847

Re: EXCEL description: (DOS Error -2147352567) WINOLE/1007 Imp

Please try setting
Code: Select all  Expand view
oBrw:lExcelCellWise := .t.

Export to Excel will be slower but you should not face the paste problems.
Just for the sake of exporting to excel, you do not have to change your codepage settings.
by nageswaragunupudi
Tue Aug 01, 2023 3:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: EXCEL description: (DOS Error -2147352567) WINOLE/1007 Imp
Replies: 4
Views: 240

Re: FWH64 + bcc64 + hbmk2 example

32 bits app are around 15% slower than 64 bits apps

https://groups.google.com/g/harbour-users/c/INKBYSN3DEE
by Antonio Linares
Mon Jun 19, 2023 8:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH64 + bcc64 + hbmk2 example
Replies: 13
Views: 825

Re: Read API data one by one or in block

... to consider: If you are reading data from an API one record at a time, you will likely have to make many connections to the server, which could be slower and potentially more resource-intensive than reading multiple records at once. On the other hand, if you are reading multiple records at once, ...
by Antonio Linares
Mon Dec 19, 2022 9:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Read API data one by one or in block
Replies: 1
Views: 253

Re: IE

Antonio, thank you, the html file is loading normally. Only in webview, map rendering is much slower than in IE. I tried to embed a webview object in a window. According to the documentation, the second webview_create parameter should be replaced with the window handle. ...
by Natter
Sun Jun 05, 2022 8:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: IE
Replies: 39
Views: 1678

Re: windows emulator

I high recommend you to use RDP.

Android is already slower without an emulator, with emulator it will be terrible :D
by Lailton
Fri Apr 22, 2022 6:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: windows emulator
Replies: 9
Views: 693
Next

Return to advanced search