Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: close a internet explorer window with a button in an Internet explorer plugin...

From: petr:krenzelok:trz:cz at: 16-Jun-2005 14:21

Emmanuel LAURET napsal(a):
>Hello Rebolers !!! > I'd like to know if it is possible to close a internet explorer window with >a button. >Thank you for help ! > ~~Manu~~ >
Hi, I am not the right-one to ask, but imo it is not easily possible. It is just imo, but imo Rebol uses kind of 'call internally to start browser via 'browse. You have 'call function available, so maybe you could call start.exe, which has some other options, but the result you receive is always:
>> ble: call/info "start /B iexplore.exe" >> probe ble
make object! [ id: none exit-code: 0 ] So - it does seem to me, that you are not able to obtan particular window handler. I am not sure if it is achievable at all, maybe you could try your luck with Win32API library calls, but you need /Pro version of Rebol for that ... -pekr-