Jump to content

jianny

Members
  • Posts

    9
  • Joined

  • Last visited

jianny's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Select Case 1 < 2 ContinueCase Case 1 > 2 MsgBox(0,"","ok") EndSelect ContinueCase bug? 3.3.9.0 version
  2. v3.3.8
  3. For $i = 1 To 3 If $i = 2 Then ContinueLoop Next MsgBox(0, "", $i) C:\Documents and Settings\Administrator\??\?? AutoIt v3 ?? (2).au3 (2) : ==> "ContinueLoop" statement with no matching "While", "Do" or "For" statement.: If $i = 2 Then ContinueLoop
  4. How to use api functions to achieve controlsend?
  5. How controlsend api function?
  6. How to block pop-up window. Unsuccessful examples below #include <IE.au3> _IEErrorHandlerRegister() Global $oIE = _IECreateEmbedded() ObjEvent($oIE,"IEEvent_","DWebBrowserEvents") GUICreate("test",700,600,(@DesktopWidth -700)/2,(@DesktopHeight -600)/2) GUICtrlCreateObj($oIE,0,0,700,600) _IENavigate($oIE,"http://www.google.com") GUISetState() Do Until GUIGetMsg() = -3 Func IEEvent_NewWindow($ppDisp,$Cancel) Local $oResult = _IEAttach($ppDisp, "url") _IEQuit($oResult) EndFunc
  7. My IE6 can not use it.
  8. How to clear ie cache.
×
×
  • Create New...