Search found 1345 matches: execute

Return to advanced search

Re: Execute php or vbs code

You have to build it yourself. From winmake\readme.txt:

Code: Select all  Expand view
SET HB_DIR_CURL=<install dir>
Required to build hbcurl.lib
Download URL: http://curl.haxx.se/
by Enrico Maria Giordano
Fri Sep 01, 2023 8:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Execute php or vbs code
Replies: 18
Views: 1108

Re: Execute php or vbs code

Enrico may help us on this

Enrico do you know where to get it ? many thanks
by Antonio Linares
Fri Sep 01, 2023 7:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Execute php or vbs code
Replies: 18
Views: 1108

Re: Execute php or vbs code

#include "c:\harbour\contrib\hbcurl\hbcurl.ch"function Main()  curl_global_init()  ? "Hello world"  ? callPHP( "www.fivetechsoft.com/getip.php" )    curl_global_cleanup()return nilfunction callPHP( cUrl )   local hCurl, uValue   ...
by wartiaga
Fri Sep 01, 2023 5:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Execute php or vbs code
Replies: 18
Views: 1108

Re: Execute php or vbs code

#include "c:\harbour\contrib\hbcurl\hbcurl.ch"function Main()  curl_global_init()  ? "Hello world"  ? callPHP( "www.fivetechsoft.com/getip.php" )    curl_global_cleanup()return nilfunction callPHP( cUrl )...
by Antonio Linares
Fri Sep 01, 2023 7:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Execute php or vbs code
Replies: 18
Views: 1108

Re: Execute php or vbs code

Creo que lo puedes hacer usando webview, pero debes contar con un servidor web así sea de manera local.
by leandro
Thu Aug 31, 2023 9:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Execute php or vbs code
Replies: 18
Views: 1108

Execute php or vbs code

Hi,

How can I run an external code in php or vbs from fivewin?

Thanks!
by wartiaga
Thu Aug 31, 2023 6:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Execute php or vbs code
Replies: 18
Views: 1108

Re: EDITOR DE TEXTO

... work with Harbout but not xHarbour. Whenever you want to test any fwh samples, do not use your own link scripts. Go to FWH Samples folder and then execute buildh <prg> or buildx <prg> When it is working, please ensure your own link script matches the build?.bat
by nageswaragunupudi
Sat Aug 26, 2023 5:15 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: EDITOR DE TEXTO
Replies: 4
Views: 289

Re: Select part of the cell

... To do this oRng:=oTb:Item(1):Cell(x,y):Range:Duplicate()[b]oRng.Find.MatchAllWordForms:=.T.[/b]oRng:Find:Execute("MyText") However, I get an error: Word.Application:ACTIVEDOCUMENT:TABLES:ITEM:CELL:RANGE:DUPLICATE:FIND/3 DISP_E_MEMBERNOTFOUND: ...
by Natter
Mon Aug 21, 2023 1:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Select part of the cell
Replies: 5
Views: 292

Re: Saving OuterHTML using Await Implementation with TWebView

... languages. 2. **Main Function**: - A Dialog (`oDlg`) is created titled "WebView Test". - The `GetOuterHtml` function is set to execute when the dialog starts (`oDlg:bStart`). - The Dialog is activated in the center. 3. **GetOuterHtml Function**: - It initializes the TWebView ...
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: 1661

Re: Saving OuterHTML using Await Implementation with TWebView

... languages. 2. **Main Function**: - A Dialog (`oDlg`) is created titled "WebView Test". - The `GetOuterHtml` function is set to execute when the dialog starts (`oDlg:bStart`). - The Dialog is activated in the center. 3. **GetOuterHtml Function**: - It initializes the TWebView ...
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: 1661

Re: Compiling Harbour from source code

Dear Enrico,

The Harbour compiler itself is inside hbcplr.lib, you don't need to call harbour.exe :-)

you can directly compile and execute from your EXE !!!
by Antonio Linares
Mon Aug 07, 2023 8:05 am
 
Forum: Off Topic / Otros temas
Topic: Compiling Harbour from source code
Replies: 9
Views: 974

Re: FW: Funcionalidad para Mysql y Mariadb

Antonio, Called from MYSQL_EXECUTE(0) in .\source\internal\FWMARIA.PRG Called from FWMARIACONNECTION:EXECUTE_SQL(6663) in .\source\internal\FWMARIA.PRG Called from FWMARIACONNECTION:EXECUTE(7024) in .\source\internal\FWMARIA.PRG Called ...
by goosfancito
Thu Jul 20, 2023 2:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FW: Funcionalidad para Mysql y Mariadb
Replies: 20
Views: 1997

Re: Update eb MariaDB por el lugar

Instead of cSql4 := oCon4:UpdateSQL(...) and then oCn4:Execute( cSql4 ), we can oCon4:Update( "balances", "month3,month4", { "MAR", "APR" }, { "ID", number } )oRs4:ReQuery()  ...
by nageswaragunupudi
Sun Jul 16, 2023 10:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Update eb MariaDB por el lugar
Replies: 3
Views: 321

Update eb MariaDB por el lugar

... 'saldos', {....... 'mes1', 'mes2', 'mes3','mes4,..................'mes12' }, { QUIERO ACTUAZAR MES3 Y MES4 }, { { 'id', numero } } ) oCon4:Execute(cSql4) oRs4:Requery() Muchas gracias Saludos. Ruben Dario Fernandez
by D.Fernandez
Thu Jul 13, 2023 8:07 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Update eb MariaDB por el lugar
Replies: 3
Views: 321

Re: event Refresh()

To update the window, I execute its Refresh() method (i.e. an event occurs)
I need to handle this event through a block of code
by Natter
Wed Jun 21, 2023 9:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: event Refresh()
Replies: 3
Views: 231
PreviousNext

Return to advanced search