Search found 29 matches: async

Return to advanced search

Re: SAPI : change Voice

... your example ? In case you are using a RC file... My mistake: the difference with events is NOT a handle of a window. The difference is to play in ASYNC mode !!! oVoice:Speak( "harbour and xharbour", 1 ) // that 1 uses Async mode and thus events arrive to us !!!
by Antonio Linares
Sun Feb 11, 2024 10:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SAPI : change Voice
Replies: 69
Views: 3575

Saving OuterHTML using Await Implementation with TWebView

... using Await Implementation with TWebView 1. Fivewin features a powerful Web Control class called TWebView. 2. The web rendering operates in async mode. 3. Consequently, users familiar with procedural synchronous modes are facing difficulties in retrieving information from the web. 4. Therefore, ...
by CharlesKwon
Mon Aug 14, 2023 1:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1659

Re: ChatGPT

... By the way, I found a great plugin for ChatGPT. It creates a button that allows you to select a file and upload it as a knowledge base. It uses async to read the file as text and split it into chunks of size 15,000, which are then sent. Here is a video demonstrating how it works: https://www.youtube.com/watch?v=iR99LO28nzM ...
by Otto
Wed May 17, 2023 8:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ChatGPT
Replies: 19
Views: 1234

Re: Reading QRCodes

... By the way, I found a great plugin for ChatGPT. It creates a button that allows you to select a file and upload it as a knowledge base. It uses async to read the file as text and split it into chunks of size 15,000, which are then sent. Here is a video demonstrating how it works: https://www.youtube.com/watch?v=iR99LO28nzM ...
by Otto
Wed May 17, 2023 8:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reading QRCodes
Replies: 8
Views: 539

Web Services Security WSS OASIS

... cXML += '</SOAP-ENV:Envelope>' oDOMDocument := win_OleCreateObject( "MSXML2.DOMDocument.5.0" ) oDOMDocument:async := .F. oDOMDocument:resolveExternals := .F. oDOMDocument:validateOnParse := .F. oDOMDocument:preserveWhiteSpace := .T. oDOMDocument:loadXML( cXml ...
by Francisco Valério
Mon Feb 20, 2023 7:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Web Services Security WSS OASIS
Replies: 0
Views: 216

Re: A big hit: Neither Apache and mod_harbour are needed

Hi Antonio Does this mean that harbour app may be an internal server socket that works with HTTP/HTTPS? Something like an async function const requestListener = function (req, res) { res.writeHead(200); res.end("Hello World!"); }; This is interesting because I have written ...
by Matteo Baccan
Fri Apr 29, 2022 4:54 pm
 
Forum: mod_harbour
Topic: A big hit: Neither Apache and mod_harbour are needed
Replies: 61
Views: 15405

Re: AYUDA PARA LEER XML DE FACTURA ELECTRONICA ( SOLUCIONADO )

... static function revisarnodo() Local oXMLDoc := TOLEAUTO():New("Microsoft.XMLDOM") Local lSuccess,oteste,xDestEmit,cXMLDestEmit oXMLDoc:async := .f. lSuccess := oXMLDoc:load( "D:\SYSTEMA\BUS\PRG\JOSE.xml" ) xDestEmit := oXMLDoc:getElementsByTagName( "cac:PartyIdentification" ...
by jbrita
Wed Mar 17, 2021 3:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: AYUDA PARA LEER XML DE FACTURA ELECTRONICA ( SOLUCIONADO )
Replies: 6
Views: 1387

error on createobject

... ,"application/xml") oHttp:SetRequestHeader("Content-Type","application/json") oDoc:async:=.f. oDoc:LoadXml('<?xml version=""1.0"" encoding=""utf-8""?>') oHttp:Send(oDoc:xml) if oHttp:status==200 ...
by Silvio.Falconi
Sat Jan 16, 2021 12:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: error on createobject
Replies: 2
Views: 517

Re: How to play a background-sound (SND_ASYNC) ?

Enrico, I found a working solution it works embedded inside the timer-function A defined var < nSndtime1 > with 0 on init The timer-function returns a valid time to play the sound Now nSndtime1 starts with counter 1 to activate the sound next the sound plays x times until reaching the max-valu...
by ukoenig
Tue Sep 10, 2019 12:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to play a background-sound (SND_ASYNC) ?
Replies: 2
Views: 565

How to play a background-sound (SND_ASYNC) ?

Hello, I want to play a background-sound a defined time without blocking any possible actions using < SND_ASYNC > That doesn't work because the function returns immediately after beginning the sound FOR I := 1 TO 3 // play sound 3 times SndPlaySound( "Test.wav", 1 ) // 0 works but is...
by ukoenig
Mon Sep 09, 2019 5:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to play a background-sound (SND_ASYNC) ?
Replies: 2
Views: 565

Re: How to Save Json data to dbf?

... ,"application/xml") oHttp:SetRequestHeader("Content-Type","application/json") oDoc:async:=.f. oDoc:LoadXml('<?xml version=""1.0"" encoding=""utf-8""?>') oHttp:Send(oDoc:xml) cRespuesta:=Alltrim(oHttp:responseText) ...
by TOTOVIOTTI
Tue Oct 11, 2016 1:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to Save Json data to dbf? (Solved)
Replies: 8
Views: 1682

Re: Nuevo ADORDD

... en la velocidad de apertura  su perdido por completo su cierre (guardarla) en lugar de eso he hecho un nuevo conjunto. SET ADO CACHESIZE A 100 ASYNC EN ASYNCNOWAIT EN Este conjunto tiene un enorme impacto en el rendimiento de apertura enormes mesas. Jugando con este conjunto podría mejorar ...
by AHF
Mon Oct 19, 2015 2:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo ADORDD
Replies: 55
Views: 16618

Re: ADO RDD xHarbour

... huge sets because the difference speed in opening its completely lost closing it( saving it) instead I ve made a new set. SET ADO CACHESIZE TO 100 ASYNC ON ASYNCNOWAIT ON This set has huge impact on performance opening huge tables. Playing with this set might improve significantly the opening time ...
by AHF
Mon Oct 19, 2015 2:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 447022

Re: Connect to Advantage Database

Hi Antonio , I try to make some test on FLH this morning. After install UBUNTU 14.04 LTS and all the packages needs to compile FLH i've a lot of errors like this: compiling... Harbour 2.1.0rc2 (Rev. 16643) Copyright (c) 1999-2011, http://harbour-project.org/ Compiling 'tutor01.prg'... Lines 1097, Fu...
by giuliano
Thu Aug 06, 2015 10:43 am
 
Forum: FiveLinux / FiveDroid (Android)
Topic: Connect to Advantage Database
Replies: 31
Views: 11218
Next

Return to advanced search