Search found 453 matches: execution

Return to advanced search

Re: SAPI : change Voice

... "RichEdit_1", "SetFocus" )    DoEvents() ENDDOReturn Microsoft Note : The WaitUntilDone method blocks execution until the voice finishes speaking, enabling an application to speak a text stream asynchronously and determine when it finishes. The hidden ...
by Danielmaximiliano
Wed Feb 14, 2024 11:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SAPI : change Voice
Replies: 69
Views: 3096

Re: Fwh 23.10 TGet another problem (UNSOLVED)

... It should always remain .F. In my tests here, it always remains .F. In your case, it is .T. from the beginning? Or is it changing to .T. during execution? Instead of adding ACTION clause, if you run the test program without changes this status is shown by the SAY  @ 200, 40 SAY { || If( ...
by Horizon
Sun Feb 04, 2024 4:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fwh 23.10 TGet another problem (UNSOLVED)
Replies: 132
Views: 52278

Re: Fwh 23.10 TGet another problem (UNSOLVED)

... It should always remain .F. In my tests here, it always remains .F. In your case, it is .T. from the beginning? Or is it changing to .T. during execution? Instead of adding ACTION clause, if you run the test program without changes this status is shown by the SAY  @ 200, 40 SAY { || ...
by nageswaragunupudi
Sun Feb 04, 2024 3:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fwh 23.10 TGet another problem (UNSOLVED)
Replies: 132
Views: 52278

Re: WebView2 Essentials: Guides, Tips & Resources

... The class design is focused on interaction between the native application and the web view, providing functionalities like navigation, script execution, and event handling. This class provides a comprehensive interface for embedding and controlling a web browser within a desktop application, ...
by Otto
Wed Jan 10, 2024 7:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView2 Essentials: Guides, Tips & Resources
Replies: 2
Views: 463

ButtonBmp TABSTOP

Hi,

How I can change buttonbmp status to TABSTOP or not TABSTOP in execution program?

Thanks in advance.
by wartiaga
Fri Jan 05, 2024 6:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp TABSTOP
Replies: 18
Views: 2439

Re: DBF . Commit

Hi,

nageswaragunupudi wrote:After changing the value of a field, execution of UNLOCK is enough to make the change visible to all other users.


If _SET_HARDCOMMIT == .T. it's ok. If _SET_HARDCOMMIT == .F. then you need commit.
by Carles
Sun Oct 22, 2023 4:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2210

Re: DBF . Commit

set( _SET_HARDCOMMIT, .F. ) Yes. The default is SET HARDCOMMIT ON After changing the value of a field, execution of UNLOCK is enough to make the change visible to all other users. Documentation: SET HARDCOMMIT ON | off | (<lOnOff>)ArgumentsON | off | (<lOnOff>) ...
by nageswaragunupudi
Sun Oct 22, 2023 2:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2210

hb_cdxPageSeekKey how to intercept this error

... subject) in fact it is different from other kinds of error that I find in error.log. I have a question: How can I create a little prg that during execution go into this error in order to study the way to intercept it and for instance perform a reindex or simply try write a personlized error.log? ...
by MarcoBoschi
Wed Oct 18, 2023 4:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: hb_cdxPageSeekKey how to intercept this error
Replies: 18
Views: 547

abort aeval()

Hi,

Is it possible to interrupt the execution of the aeval() function by condition ?
by Natter
Mon Oct 09, 2023 9:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: abort aeval()
Replies: 2
Views: 299

Re: Convert

If the purpose is to save the string and restore later for execution:   b := { || MsgInfo( "Good" ) }   Eval( b )   c := HB_Serialize( b )   ? ValType( c ), Len( ...
by nageswaragunupudi
Wed Sep 06, 2023 1:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Convert
Replies: 7
Views: 524

Re: Lost connection to MySQL server during query

oCn:max_statement_time

Is generating the error bellow:
Called from: FWMARIA.PRG => FWMARIACONNECTION:MAX_STATEMENT_TIME( 10176 )

? oCn:max_execution_time = 0
by vilian
Wed Sep 06, 2023 1:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Lost connection to MySQL server during query
Replies: 37
Views: 11989

Re: Execute php or vbs code

Enrico Maria Giordano wrote:Right. Try libcurl.lib from FWH lib directory.


Good, no error, but in execution gives: Unrecoverable error 9011 - hb_xfree called with null pointer
Thank you!
by wartiaga
Sat Sep 02, 2023 3:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Execute php or vbs code
Replies: 18
Views: 1037

Re: Saving OuterHTML using Await Implementation with TWebView

... for loading web pages, executing JavaScript, and retrieving data from web pages. The program also uses the FiveWin SysWait() function to pause the execution of the program for a specified number of milliseconds. This is used to prevent the program from consuming too much CPU resources while it ...
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: 1518

Re: Saving OuterHTML using Await Implementation with TWebView

... for loading web pages, executing JavaScript, and retrieving data from web pages. The program also uses the FiveWin SysWait() function to pause the execution of the program for a specified number of milliseconds. This is used to prevent the program from consuming too much CPU resources while it ...
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: 1518

Re: Webview InjectJavascript no entiendo

Leandro, Como lo proprio nombre diz "InjectJavascript" es para caso tu quieras aggregar 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")' ...
by Lailton
Sat Aug 12, 2023 12:16 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Webview InjectJavascript no entiendo
Replies: 3
Views: 178
Next

Return to advanced search