Search found 1329 matches

by Horizon
Mon Mar 03, 2025 6:06 am
Forum: FiveWin for Harbour/xHarbour
Topic: SysWait() problem. - SOLVED
Replies: 3
Views: 3472

Re: SysWait() problem.

Thank you Antonio,

It works just fine.
by Horizon
Sun Mar 02, 2025 9:01 am
Forum: FiveWin for Harbour/xHarbour
Topic: SysWait() problem. - SOLVED
Replies: 3
Views: 3472

Re: SysWait() problem.


Dear Hakan,

This updated version should solve it:
function SysWait( nLong )
local nStart

DEFAULT nLong := .1
nStart := HB_MilliSeconds() // Milliseconds since app start or system epoch

while (HB_MilliSeconds() - nStart) < (nLong * 1000) // Convert seconds to milliseconds
SysRefresh()
end ...
by Horizon
Sat Mar 01, 2025 9:50 am
Forum: FiveWin for Harbour/xHarbour
Topic: SysWait() problem. - SOLVED
Replies: 3
Views: 3472

SysWait() problem. - SOLVED

Hi,

I looked for the source code of the SysWait function in the Fwh source codes directory, but I could not find it. I guess it could be in the harbour. I found a source code shared by Enrico in an old topic on this forum. Is this code the code we use in our applications?

function SysWait( nLong ...
by Horizon
Fri Feb 21, 2025 3:50 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Copy Paste problem in TGet (Fwh 24.02)
Replies: 6
Views: 8225

Re: Copy Paste problem in TGet (Fwh 24.02)



Hi,

This is the sample app.
#include "FiveWin.ch"

function TestGetPic

local oDlg, oGet
local cGet := "123456789012345"

DEFINE DIALOG oDlg SIZE 200,200 PIXEL TRUEPIXEL
@ 30,30 GET oGet VAR cGet ;
SIZE 150,20 PIXEL OF oDlg
@ 80,30 BUTTON "OK" SIZE 80,30 PIXEL OF oDlg ACTION (oDlg:End ...
by Horizon
Thu Feb 20, 2025 12:34 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Copy Paste problem in TGet (Fwh 24.02)
Replies: 6
Views: 8225

Copy Paste problem in TGet (Fwh 24.02)

Hi,

This is the sample app.
#include "FiveWin.ch"

function TestGetPic

local oDlg, oGet
local cGet := "123456789012345"

DEFINE DIALOG oDlg SIZE 200,200 PIXEL TRUEPIXEL
@ 30,30 GET oGet VAR cGet ;
SIZE 150,20 PIXEL OF oDlg
@ 80,30 BUTTON "OK" SIZE 80,30 PIXEL OF oDlg ACTION (oDlg:End ...
by Horizon
Tue Dec 31, 2024 11:38 am
Forum: FiveWin for Harbour/xHarbour
Topic: To all the FW family
Replies: 10
Views: 2332

Re: To all the FW family

+1 :lol:
by Horizon
Sat Nov 09, 2024 9:03 am
Forum: FiveWin for Harbour/xHarbour
Topic: how to close downloaded files window in webview2
Replies: 13
Views: 2737

Re: how to close downloaded files window in webview2

Thank you Antonio,

I will try to adapt latest version to my app.

I apologize in advance if this process will disturb you further.
by Horizon
Fri Nov 08, 2024 2:13 pm
Forum: FiveWin for Harbour/xHarbour
Topic: how to close downloaded files window in webview2
Replies: 13
Views: 2737

Re: how to close downloaded files window in webview2

Hi Antonio,

Is there any other option that can solve this request other than the new version?
by Horizon
Wed Nov 06, 2024 12:03 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to add element to right click popup menu list in TGet.
Replies: 2
Views: 540

How to add element to right click popup menu list in TGet.

Hi,

How to add element to right click popup menu list in TGet.

Thanks,
by Horizon
Sat Nov 02, 2024 9:08 am
Forum: FiveWin for Harbour/xHarbour
Topic: how to close downloaded files window in webview2
Replies: 13
Views: 2737

Re: how to close downloaded files window in webview2

Hi Antonio,

First of all, thank you very much for your kindness.

I guess the source of my problems stems from the CalcSize method used in many classes. I guess it's not just in the TGroup class.

I do not think I have the right to request the changes I have identified. Because, like most users ...
by Horizon
Fri Nov 01, 2024 6:32 pm
Forum: FiveWin for Harbour/xHarbour
Topic: how to close downloaded files window in webview2
Replies: 13
Views: 2737

Re: how to close downloaded files window in webview2

updated libs sent by email

oWebView:ShowDownloads( .F. )

Hi Antonio,

I could not use this libs. When I copy this libs to my fwh 24.02 libs directory, same semptons in fwh 24.09 comes again.
https://forums.fivetechsupport.com/viewtopic.php?f=3&t=44961&sid=6f096339882ed7219e261d450dd74ee3

Can ...
by Horizon
Fri Nov 01, 2024 12:06 pm
Forum: FiveWin for Harbour/xHarbour
Topic: how to close downloaded files window in webview2
Replies: 13
Views: 2737

Re: how to close downloaded files window in webview2

Hi Antonio,

I use fwh 24.02 and harbour 32 bit. I could not use 24.09.

Thank you very much.
by Horizon
Thu Oct 31, 2024 11:40 am
Forum: FiveWin for Harbour/xHarbour
Topic: how to close downloaded files window in webview2
Replies: 13
Views: 2737

how to close downloaded files window in webview2

Hi,

I found this.
https://stackoverflow.com/questions/734 ... tent-or-pr

How to do it using fwh webview class?

Thanks.
by Horizon
Thu Oct 24, 2024 7:10 am
Forum: FiveWin for Harbour/xHarbour
Topic: GetImageHash
Replies: 2
Views: 747

Re: GetImageHash

Antonio Linares wrote:Dear Hakan,

Please try this:

MsgInfo( nFileCRC( "yourimage.png" ) ) // any image extension
I will try.

Thanks.