Custom Query (3910 matches)
Results (331 - 333 of 3910)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1139 | Fixed | Run filename plus path | ||
| Description |
The help pages for Run, RunWait, RunAs and RunAsWait functions could more accurately describe the filename parameter. As it is written, "The name of the executable (EXE, BAT, COM, PIF) to run.", many users are believing that the parameter should only contain the name of the executable without the path. I suggest to change the description of the parameter to indicate that the path should be included. Perhaps "The name of the executable (EXE, BAT, COM, PIF) to run, including the path.". |
|||
| #1140 | Fixed | _ArraySearch return 0 (if $avArray is not a 1 dimensional array) | ||
| 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) |
|||
| #1145 | Fixed | GUICtrlCreateTreeView() steals application focus | ||
| Description |
The following code steals focus from the active application even though the GUI isn't visible immediately: #cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.0.0
Author: TayouFabrice
After creating a GUICtrlTreeView the GUI take focus it is a problem for an app
whish start on Background and dosn't want ot get focus before being visible
i have put sleep ( ) at line 21 to shaw that gui is not visible but has allready
focus. This problem is serious
#ce ----------------------------------------------------------------------------
#include <GUIConstantsEx.au3>
#include <TreeViewConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 633, 447, 192, 215)
ConsoleWrite ( "> GUI is created but have no focus"&@CRLF)
Sleep ( 6000)
$TreeView1 = GUICtrlCreateTreeView(96, 32, 345, 273)
ConsoleWrite ( "> GUI has already focus"&@CRLF)
Sleep ( 6000)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
|
|||
