Custom Query (3933 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (412 - 414 of 3933)

Ticket Resolution Summary Owner Reporter
#1140 Fixed _ArraySearch return 0 (if $avArray is not a 1 dimensional array) Jpm JKFN
Description

WRONG: If UBound($avArray, 0) > 2 Or UBound($avArray, 0) < 1 Then Return SetError(2, 0, 0)

OK: If UBound($avArray, 0) > 2 Or UBound($avArray, 0) < 1 Then Return SetError(2, 0, -1)

#1142 No Bug _ArraySearch return 0 (number vs string) Gary JKFN
Description

#Include <Array.au3> Dim $array[1] $array[0]=0 $output=_ArraySearch($array,"string")

$output is not -1, but 0

#2639 Fixed Unable to Copy/Paste from Embedded IE object Jon JLogan3o13
Description

This issue was reported in the Help and Support forum. Since an upgrade from 3.3.8.1, OP is unable to copy and paste from an embedded IE object. This has been verified by several members and MVPs; it works in 3.3.8.1, stops working in 3.3.10.0, and does not work in latest Beta 3.3.11.3. Reproducer is below.

#include <misc.au3>
#include <Array.au3>
#include <IE.au3>

HotKeySet("{ESC}", "Close")

Local $TOOLS[10]
Global Enum $output1,$output2,$output3,$output4
$TOOLS[1] = "one"
$TOOLS[2] = "two"
#include <GUIConstantsEx.au3>
Opt("GUIOnEventMode", 1)

GUICreate("Embedded IE Test", 640, 480, -1, -1)
GUISetOnEvent($GUI_EVENT_CLOSE, "Close")
Global $oIE = ObjCreate("Shell.Explorer.2")
GUICtrlCreateObj($oIE, 0, 0, 640, 480)
GUISetState(@SW_SHOW)
$oIE.navigate("http://www.autoitscript.com")

While 1
    sleep(100)
WEnd

Func Close()
    ControlClick("Embedded IE Test", "", "[CLASS:Internet Explorer_Server; INSTANCE:1]")
    Sleep(200)
    Send("^a")
    Sleep(200)
    Send("^c")
    Run("Notepad.exe")
    WinWait("Untitled - Notepad")
    WinActivate("Untitled - Notepad")
    Sleep(200)
    Send("^v")
    Exit
EndFunc
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.