Search found 59 matches: await

Return to advanced search

Re: how to "override" Function of FiveH64.lib using MSVC

Or you may also await the next release of FWH
by nageswaragunupudi
Sun Sep 03, 2023 5:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to "override" Function of FiveH64.lib using MSVC
Replies: 4
Views: 330

Re: Saving OuterHTML using Await Implementation with TWebView

leandro Buenas tardes. ¿Podría proporcionar una explicación detallada de exactamente qué funcionalidad debe ser implementada? Regards, Charles KWON Charles buenas noches como estas? Que pena molestarte, pero nos surge la necesidad de eliminar algunos de los elementos DOM, no se si ya esta contemplad...
by CharlesKwon
Fri Aug 25, 2023 7:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1627

Re: Saving OuterHTML using Await Implementation with TWebView

Charles buenas noches como estas? Que pena molestarte, pero nos surge la necesidad de eliminar algunos de los elementos DOM, no se si ya esta contemplado? Al mismo tiempo tambien necesitamos recuperar algunos de los atributos de las etiquetas, no se si ya lo tengas implementado?, para el caso en cue...
by leandro
Fri Aug 25, 2023 12:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1627

Re: Saving OuterHTML using Await Implementation with TWebView

leandro, Gracias por compartir los resultados. Si surge algún problema durante el proceso, no dudes en informarme en cualquier momento, y haré lo posible por brindarte ayuda. Regards, Charles KWON Charles de momento hicimos funcionar tu ejemplo... En el transcurso de la semana voy a empezar a usar l...
by CharlesKwon
Thu Aug 24, 2023 5:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1627

Re: Saving OuterHTML using Await Implementation with TWebView

Charles de momento hicimos funcionar tu ejemplo... En el transcurso de la semana voy a empezar a usar la clase mas a fondo. Apenas tenga otra imagen con lo que hicimos tambien te la hare llegar. Muchas gracias por el aporte https://hymplus.com/forofw/webquery.png FUNCTION GetOuterHtml...
by leandro
Wed Aug 23, 2023 3:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1627

Re: Saving OuterHTML using Await Implementation with TWebView

Listo ya logre integrar la clase a la aplicación, parece que el problema eran los puntos suspensivos que tiene código, según lo visto no son compatibles con xharbour.     ::bOldBind := ::oWeb:bOnBind    ::oWeb:bOnBind := { | cJson, cCalls, ... | ::GetBind( cJson, cCalls, ... ) } /...
by Antonio Linares
Wed Aug 23, 2023 2:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1627

Re: Saving OuterHTML using Await Implementation with TWebView

leandro, If the ellipsis (...) doesn't work in xharbour, feel free to remove it. If the program I provided codes as desired, I would appreciate it if you could capture a screenshot and let me know. Regards, Charles KWON Listo ya logre integrar la clase a la aplicación, parece que el problema eran lo...
by CharlesKwon
Wed Aug 23, 2023 1:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1627

Re: Saving OuterHTML using Await Implementation with TWebView

Listo ya logre integrar la clase a la aplicación, parece que el problema eran los puntos suspensivos que tiene código, según lo visto no son compatibles con xharbour.     ::bOldBind := ::oWeb:bOnBind    ::oWeb:bOnBind := { | cJson, cCalls, ... | ::GetBind( cJson, cCalls,...
by leandro
Tue Aug 22, 2023 2:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1627

Re: Saving OuterHTML using Await Implementation with TWebView

Hello Otto. SysWait() is not a timer. Could you please provide a detailed explanation of what it is used for? Alternatively, if you'd like, you can share your email, and I'll provide you with my WhatsApp contact. Regards, Charles KWON Hello Charles, In the past, I had some problems with SysWait(). I...
by CharlesKwon
Mon Aug 21, 2023 6:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1627

Re: Saving OuterHTML using Await Implementation with TWebView

Hello Charles, In the past, I had some problems with SysWait(). I think you should use a timer. https://forums.fivetechsupport.com/viewtopic.php?f=3&t=36667&p=218689&hilit=syswait&sid=baaa9792d603f7acacf7427eeacfd234#p218689 I tested your suggestion with syswait in a loop, and it's c...
by Otto
Fri Aug 18, 2023 8:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1627

Re: Saving OuterHTML using Await Implementation with TWebView

Charles, thank you so much.
Best regards,
Otto
by Otto
Thu Aug 17, 2023 10:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1627

Re: Saving OuterHTML using Await Implementation with TWebView

... waiting for specific elements to be loaded on the web page, ensuring the content is available for extraction. - The idea is to simulate the 'await' functionality seen in other programming languages. 2. **Main Function**: - A Dialog (`oDlg`) is created titled "WebView Test". - The ...
by CharlesKwon
Thu Aug 17, 2023 9:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1627

Re: Saving OuterHTML using Await Implementation with TWebView

... waiting for specific elements to be loaded on the web page, ensuring the content is available for extraction. - The idea is to simulate the 'await' functionality seen in other programming languages. 2. **Main Function**: - A Dialog (`oDlg`) is created titled "WebView Test". - The ...
by Otto
Thu Aug 17, 2023 8:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1627

Re: Saving OuterHTML using Await Implementation with TWebView

Cristobal Navarro, tienes razón. TAWaitWeb es una clase que he creado y hecho pública. Puedes visitar la URL de abajo, copiar el código de TAWaitWeb y usarlo según lo necesites. http://www.charleskwon.com/?p=935 Regards, Charles KWON Leandro, comprueba que con el copy/paste no te "has llevado&q...
by CharlesKwon
Thu Aug 17, 2023 1:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1627
Next

Return to advanced search