Hi, is possible use ShellExecute() with no show window?
I want to execute a script:
SHELLEXECUTE( 0, 0, "'http://www.transp.com.br/act", 0, 0, 1 )
but i want not display a browse window.
Thanks.
Enrico Maria Giordano wrote:Try passing 0 as the last parameter.
EMG
oExplorer = CREATEOBJECT( "InternetExplorer.Application" )
oExplorer:Navigate2( "http://www.transp.com.br/act" )
WHILE oExplorer:ReadyState <> 4
SYSREFRESH()
ENDDO
oExplorer:Quit()
Enrico Maria Giordano wrote:Then try this:
- Code: Select all Expand view
oExplorer = CREATEOBJECT( "InternetExplorer.Application" )
oExplorer:Navigate2( "http://www.transp.com.br/act" )
WHILE oExplorer:ReadyState <> 4
SYSREFRESH()
ENDDO
oExplorer:Quit()
EMG
Return to FiveWin for Harbour/xHarbour
Users browsing this forum: No registered users and 53 guests