FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour how to close downloaded files window in webview2
Posts: 1387
Joined: Fri May 23, 2008 01:33 PM
how to close downloaded files window in webview2
Posted: Thu Oct 31, 2024 11:40 AM
Regards,



Hakan ONEMLI



Harbour & MSVC 2022 & FWH 23.06
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: how to close downloaded files window in webview2
Posted: Thu Oct 31, 2024 08:37 PM

Dear Hakan,

We are reviewing it

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: how to close downloaded files window in webview2
Posted: Fri Nov 01, 2024 07:21 AM

Dear Hakan,

Could you please provide me a screenshot of the exact window that you want not to be shown ?

many thanks

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: how to close downloaded files window in webview2
Posted: Fri Nov 01, 2024 10:37 AM
We have already implemented it with the great help of our friend and Master Bruno Cantero! :-)

Do you need it for Borland 32 bits ?
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 1387
Joined: Fri May 23, 2008 01:33 PM
Re: how to close downloaded files window in webview2
Posted: Fri Nov 01, 2024 12:06 PM

Hi Antonio,

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

Thank you very much.

Regards,



Hakan ONEMLI



Harbour & MSVC 2022 & FWH 23.06
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: how to close downloaded files window in webview2
Posted: Fri Nov 01, 2024 06:13 PM

updated libs sent by email

oWebView:ShowDownloads( .F. )

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 1387
Joined: Fri May 23, 2008 01:33 PM
Re: how to close downloaded files window in webview2
Posted: Fri Nov 01, 2024 06:32 PM
Antonio Linares wrote: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 you please send only showdownloads method and its related HB_FUNC Functions.

Thanks again.
Regards,



Hakan ONEMLI



Harbour & MSVC 2022 & FWH 23.06
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: how to close downloaded files window in webview2
Posted: Fri Nov 01, 2024 06:44 PM

Dear Hakan,

You can extract these modules from the libs:

cwebview.obj, webview2.obj from Fivehc32.lib

twebview2.obj from fiveh32.lib

Anyhow if just that difference in Class TGroup is what is stopping you from using FWH 24.09 we can modify Class TGroup as per your posted code

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 1387
Joined: Fri May 23, 2008 01:33 PM
Re: how to close downloaded files window in webview2
Posted: Sat Nov 02, 2024 09:08 AM

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, I think that the resize feature of windows should come as soon as possible. I think CalcSize is also a part of this project.

Perhaps a temporary variable such as FW_SetResize( .f. ) can be defined that determines whether this method will work or not.

Regards,



Hakan ONEMLI



Harbour & MSVC 2022 & FWH 23.06
Posts: 1387
Joined: Fri May 23, 2008 01:33 PM
Re: how to close downloaded files window in webview2
Posted: Fri Nov 08, 2024 02:13 PM

Hi Antonio,

Is there any other option that can solve this request other than the new version?

Regards,



Hakan ONEMLI



Harbour & MSVC 2022 & FWH 23.06
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: how to close downloaded files window in webview2
Posted: Fri Nov 08, 2024 04:18 PM

Dear Hakan,

Unfortunately not. You need the new version, it is not a minor change.

Sorry

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 1387
Joined: Fri May 23, 2008 01:33 PM
Re: how to close downloaded files window in webview2
Posted: Sat Nov 09, 2024 09:03 AM

Thank you Antonio,

I will try to adapt latest version to my app.

I apologize in advance if this process will disturb you further.

Regards,



Hakan ONEMLI



Harbour & MSVC 2022 & FWH 23.06
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: how to close downloaded files window in webview2
Posted: Sun Nov 10, 2024 05:06 PM
Dear Hakan,

You are very welcome :-)
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 410
Joined: Sun Jan 31, 2010 03:30 PM
Re: how to close downloaded files window in webview2
Posted: Mon Nov 11, 2024 03:10 PM

Buen dia...

Asi pude usar fwh 24-09

Este código afecta a Tgroup

bloquear asi

/*

if !lPixel

if nTop >= 1.0; nTop *= GRP_CHARPIX_H; endif

if nLeft >= 1.0; nLeft *= GRP_CHARPIX_W; endif

if nBottom >= 1.0; nBottom *= GRP_CHARPIX_H; endif

if nRight >= 1.0; nRight *= GRP_CHARPIX_W; endif

endif

::CalcSize( @nTop, @nLeft, @nWidth, @nHeight, lRelPix, oWnd, @nBottom, @nRight )

*/

::nTop = nTop * If( lPixel, 1, GRP_CHARPIX_H ) // 14

::nLeft = nLeft * If( lPixel, 1, GRP_CHARPIX_W ) // 7

if nWidth != nil

::nRight = ::nLeft + nWidth

else

::nRight = nRight * If( lPixel, 1, GRP_CHARPIX_W ) // 7

endif

y este a Tpanel

dejar asi

METHOD New( nTop, nLeft, nBottom, nRight, oWnd, lDesign, cVarName, lBorder ) CLASS TPanel

DEFAULT nTop := 0, nLeft := 0, nBottom := 100, nRight := 100,;

oWnd := GetWndDefault(), lDesign := .F., lBorder := .F.

::lUnicode = FW_SetUnicode()

::nTop = nTop

::nLeft = nLeft

::nBottom = nBottom

::nRight = nRight

russimicro

Posts: 248

Joined: Sun Jan 31, 2010 3:30 pm

Location: Bucaramanga - Colombia

Continue the discussion