I found this.
https://stackoverflow.com/questions/73464438/how-to-hide-the-download-dialog-in-webview2-while-downloading-page-content-or-pr
How to do it using fwh webview class?
Thanks.
Hakan ONEMLI
Harbour & MSVC 2022 & FWH 23.06
Dear Hakan,
We are reviewing it
Dear Hakan,
Could you please provide me a screenshot of the exact window that you want not to be shown ?
many thanks
Hi Antonio,
I use fwh 24.02 and harbour 32 bit. I could not use 24.09.
Thank you very much.
updated libs sent by email
oWebView:ShowDownloads( .F. )
Antonio Linares wrote:updated libs sent by emailHi Antonio,
oWebView:ShowDownloads( .F. )
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
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.
Hi Antonio,
Is there any other option that can solve this request other than the new version?
Dear Hakan,
Unfortunately not. You need the new version, it is not a minor change.
Sorry
Thank you Antonio,
I will try to adapt latest version to my app.
I apologize in advance if this process will disturb you further.
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