Advertisement
Blasium

Untitled

Feb 21st, 2012
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.49 KB | None | 0 0
  1. #include <GUIConstantsEx.au3>
  2. #include <WindowsConstants.au3>
  3. #include <IE.au3>
  4. ;http://load.free-way.me/tools/rsconverter.php
  5.  
  6. $oIE = _IECreateEmbedded ()
  7. GUICreate("Embedded Web control Test", 440, 580)
  8. $GUIActiveX = GUICtrlCreateObj($oIE, 0, 0, 440, 580)
  9.  
  10. GUISetState()       ;Show GUI
  11.  
  12. _IENavigate ($oIE, "http://load.free-way.me/tools/rsconverter.php")
  13.  
  14. While 1
  15.     $msg = GUIGetMsg()
  16.     Select
  17.         Case $msg = $GUI_EVENT_CLOSE
  18.             ExitLoop
  19.     EndSelect
  20. WEnd
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement