Custom Query
Results (328 - 330 of 3899)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1891 | Fixed | _ArrayDisplay (......,i$iTranspose,...) wrong description ? | Jon | 436602556274@… |
| Description |
Bug in help of _ArrayDisplay: $iTranspose [optional] If set differently than default, will transpose the array if 2D Transpose happens, if set, for 2D as well for 1D !
Only formal:
Not a bug, but a little bit more description of "$sHeader" would be nice. like: $sHeader [optional] Header column names (column headers separated by "|") or simple one or more examples with $sHeader. (Component: Documentation or Standard UDFs ?) |
|||
| #1895 | Fixed | Bugs in _GUIScrollBars_Init() | Jon | neil.wilson@… |
| Description |
In _GUIScrollBars_Init(), when setting up the $tSCROLLINFO struct for both horizontal and vertical scroll bars, the code in _GUIScrollBars_Init() assigns the fMask as follows: DllStructSetData($tSCROLLINFO, "fMask", BitOR($_SCROLLBARCONSTANTS_SIF_PAGE, $_SCROLLBARCONSTANTS_SIF_PAGE)) This is incorrect as the range and page are being set for both scrollbars and should be: DllStructSetData($tSCROLLINFO, "fMask", BitOR($_SCROLLBARCONSTANTS_SIF_RANGE, $_SCROLLBARCONSTANTS_SIF_PAGE)) Also _GUIScrollBars_Init() states that -1 can be given for the $iHMax and the $ivMax. If however, $ivMax is not given or $ivMax = -1, then nMax in the $tSCROLLINFO for the vertical scrollbar will = -1 and not the default value of 27. DllStructSetData($tSCROLLINFO, "nMax", $ivMax) This should be: DllStructSetData($tSCROLLINFO, "nMax", $aSB_WindowInfo[$index][7]) |
|||
| #1908 | Fixed | ObjName returns empty string for HTMLDocument with IE9 | Jon | anonymous |
| Description |
With IE9 installed, the ObjName function returns an empty string when it should return HTMLDocument (there may be other elements that also cause trouble, but complete investigation has not been performed). This causes many functions in IE.au3 to break and there is no good work around. This works properly with IE8 as well as in VBScript with IE9. This appears to be a bug with ObjName on the AutoIt side. This is discussed here: http://www.autoitscript.com/forum/topic/126670-ie9-automation-problems/page__pid__883469#entry883469 Here is reprocuder code: AutoIt code (3.3.6.1): #include <IE.au3> $oIE = _IECreate ("http://wdextras.womansday.com/contests_texas.html") ConsoleWrite(isObj($oIE.document) & " -- <" & ObjName($oIE.document) & ">" & @CRLF) Output: 1 -- <> VBScript code: set oIE = CreateObject("InternetExplorer.Application") oIE.visible = true oIE.navigate("http://wdextras.womansday.com/contests_texas.html") MsgBox(TypeName(oIE.document)) Output: HTMLDocument |
|||
