Search found 74 matches: owebview

Return to advanced search

Dynamic Table Filter Control

... install https://developer.microsoft.com/en-us/m ... /webview2/ x86 version before using it #include "FiveWin.ch" function Main() local oWebView := TWebView():New() oWebView:SetHtml( Html() ) oWebView:SetTitle( "Please identify with your credentials" ) oWebView:SetSize( 1200, ...
by Otto
Fri May 03, 2024 4:42 pm
 
Forum: mod_harbour
Topic: Dynamic Table Filter Control
Replies: 0
Views: 186

Re: Consulta TWebView2 - pase de informacion

Estimado Enrique,

> pasar informacion de FWH a HTML

Usa oWebView:Eval( cJavaScriptCode ) desde FWH
by Antonio Linares
Sat Mar 30, 2024 10:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta TWebView2 - pase de informacion
Replies: 4
Views: 925

Re: FWH 24.02 new Class TWebView2

... un tanto de la forma original de uso que Microsoft implementó. El método Eval() devuelve el resultado de la evaluación ahora, por que MsgInfo( oWebView:Eval( "123" ) ) devolverá 123, y eso sucede igualmente si se llama a cualquier código javascript que devuelva un cierto valor. Por ...
by Antonio Linares
Wed Mar 13, 2024 4:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 24.02 new Class TWebView2
Replies: 11
Views: 2509

Re: WebView resize

Dear Antonio,
Even though I do not use the code block bResized, but the DIALOG is resizable and I have changed the size, then I also get the error.
Best regards,
Otto


h['oDlg']:bResized := { || oWebView:SetSize(600, 800) }'
by Otto
Fri Mar 08, 2024 10:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView resize
Replies: 9
Views: 2130

WebView resize

Dear Antonio, When I use h['oDlg']:bResized := { || oWebView:SetSize(600, 800) } inside the FIVEWIN DIALOG after pressing the "Cancel" button within the WebView (HTML), the program encounters an error, but this only occurs if the DIALOG has ...
by Otto
Fri Mar 08, 2024 10:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView resize
Replies: 9
Views: 2130

Re: FWH 24.02 new Class TWebView2

... problem here that I wanted to display the PDF in an iframe. I then realized that the webview2 denies access. Then I wanted to allow access with oWebView:SetAllowFileAccess(.t.), but this is not supported. Is this possible with the new version? Best regards, Otto Not allowed to load local resource: ...
by Otto
Fri Mar 01, 2024 3:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 24.02 new Class TWebView2
Replies: 11
Views: 2509

Re: Google Graph extra graphic ? (Navaro)

Making more than 1 panel is possible then ? oPanel1, oPanel2 also oWebview1, oWebview2 and oWebView:SetHtml( Html1()... // Graphtype1 (google gauge) oWebView:SetHtml( Html2()... // Graph 2 (google bar) the call in the ON Init will be more complex Just to know if possible ...
by Marc Venken
Thu Feb 22, 2024 2:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 23
Views: 2926

Re: Google Graph extra graphic ? (Navaro)

Dear Marc,

Using oWebView:Eval( cJavaScriptCode ) you can modify the chart data, etc.

As you see we can easily use web components from our desktop apps thanks to Class TWebView :-)
by Antonio Linares
Tue Feb 20, 2024 10:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 23
Views: 2926

Re: Highlighting on a web page

You can easily use oWebView:InjectJavascript( ... ) to get the entire DOM
by Antonio Linares
Wed Feb 07, 2024 7:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Highlighting on a web page
Replies: 8
Views: 496

Re: WebView2 sample

... to run ok https://i.postimg.cc/zfDvzhc4/b.png but there is an error on source because not run ok error on Login( cJson, cCalls, oWebView ) https://i.postimg.cc/TPxmrhHc/b.png but before I get into webview I have to solve the countless problems I have with my desktop ...
by Silvio.Falconi
Mon Jan 29, 2024 10:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView2 sample
Replies: 16
Views: 1224

accordion and webview2

... some tests with accordion and webview2. I need some help. With which function do we encode the URI from Fivewin into HTML? Calling the html works. oWebView:Navigate( "C:\fwh2023\samples\Untitled-1.html" ) Also if I insert an URI encoded cHTML source. oWebView:Navigate( Html() ) I need ...
by Otto
Mon Jan 08, 2024 1:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: accordion and webview2
Replies: 2
Views: 449

Re: Refresh on WebView

... a page, not just using mouse macros. There's a more reliable method. Try passing the following script to the Webview through the EVAL Method: oWebView:EVAL( "location.reload();" ) Regards, Chalres KWON Hello friends, I'm using the WebView with DashBoard and I would like to refresh ...
by CharlesKwon
Sat Aug 26, 2023 12:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Refresh on WebView
Replies: 2
Views: 306

Re: Webview InjectJavascript no entiendo

... injectada y obtener el valor resultante (método Bind()) ó realizar la acción deseada (método Eval()). Podrias ejecutar ese código inyectado usando oWebView:Eval( cNombreFuncionJavascripAñadida ) ó usando oWebView:Bind( ... ) si necesitas recuperar el valor devuelto por la función javascript que ...
by Antonio Linares
Sat Aug 12, 2023 5:46 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Webview InjectJavascript no entiendo
Replies: 3
Views: 196

Re: Webview InjectJavascript no entiendo

... a una pagina alguma rotina en tiempo de execution ou ate miesmo executar algun commando javascript en la pagina cuando la miesma estiver cargada. oWebView:InjectJavascript( 'alert("test")' ) :D
by Lailton
Sat Aug 12, 2023 12:16 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Webview InjectJavascript no entiendo
Replies: 3
Views: 196

Re: New FTDN July/Julio (FWH 23.07)

... FW_GetClipBoardData() return nil --- * Nuevo: Nuevo método Center() en la clase TWebView. Puedes centrar un objeto webview simplemente con oWebView:Center(). * Nuevo: Se ha añadido el fichero vs2022_make.zip en FWH\makes con los ficheros necesarios para construir nuestros programas usando ...
by Antonio Linares
Sat Jul 29, 2023 9:16 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio (FWH 23.07)
Replies: 7
Views: 1083
Next

Return to advanced search