Custom Query (3933 matches)
Results (475 - 477 of 3933)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #476 | Fixed | Function Trace lines have to be removed manually | ||
| Description |
SciTE4AutoIt 17-5-2008 release AutoIt 3.2.13.5 Win XP Pro SP2 In SciTE4AutoIt function trace lines inserted using the 'Tools->Trace:Add Func Trace Lines' tool have to be removed manually as neither the 'Tools->Trace:Remove ALL Trace Lines' or 'Tools->Debug Remove Lines' remove the ConsoleWrite lines inserted by 'Tools->Trace:Add Func Trace Lines' |
|||
| #477 | Rejected | Extract values from array at function runtime | ||
| Description |
What I mean by this is being able to directly reference an array element without storing it into an array (Cutting out the middleman). Example: $sString = StringSplit("test|hello|hi", "|")[1]
Instead of $azSplit = StringSplit("test|hello|hi", "|")
$sString = $azSplit[1]
Could this be considered? |
|||
| #478 | No Bug | Koda (FormDesigner) | ||
| Description |
AutoIt 3.2.12.1 I use Koda (FormDesigner) for creating GUI interface, uncheck the "WS_MINIMIZEBOX", and generating code. Result: #include <GUIConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 625, 445, 193, 125, BitOR($WS_SYSMENU,$WS_CAPTION,
$WS_POPUP,$WS_POPUPWINDOW,$WS_BORDER,$WS_CLIPSIBLINGS))
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
Line with "GUICreate()" is separated with @CrLf character. When I start the script, result is:
D:\AutoIt files\temp3.au3(14,66) : WARNING: $WS_SYSMENU: possibly used before declaration.
$Form1 = GUICreate("Form1", 625, 445, 193, 125, BitOR($WS_SYSMENU,
|
|||
