Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (136 - 138 of 3866)

Ticket Resolution Summary Owner Reporter
#12 Rejected GuiCtrlSetData() not appending a single value if it already exists Jpm Bowmore
Description

This script demonstrates a bug in repeated calls to GUICtrlSetData() to add a single value to a list where that value already exists in the list. The value is not appended to the list unless there is a pipe character after the value.

#include <GUIConstants.au3>

GUICreate("My GUI")  ; will create a dialog box that when displayed is centered

$mylist1 = GUICtrlCreatelist ("", 10,10)
GUICtrlSetData($mylist1, "test")
GUICtrlSetData($mylist1, "test")
; only one entry apeers in list

$mylist2 = GUICtrlCreatelist ("", 10,200)
GUICtrlSetData($mylist2, "test")
GUICtrlSetData($mylist2, "test|")
; two entries apeer in list

GUISetState ()       ; will display an empty dialog box with a  control with focus on

; Run the GUI until the dialog is closed
While 1
    $msg = GUIGetMsg()
    
    If $msg = $GUI_EVENT_CLOSE Then ExitLoop
Wend
#47 Rejected FileInstall() to use the same Flag values as FileCopy Bowmore
Description

I would like FileInstall() to use the same Flag parameter values as FileCopy(). The two function essentially perform the same function copying a file from one location to another the only significant difference being that the source used by FileInstall() is fixed i.e. the compiled script.

Quote:form FileCopy help

flag [optional] 
this flag determines whether to overwrite files if they already exist.
Can be a combination of the following:
 0 = (default) do not overwrite existing files
 1 = overwrite existing files
 8 = Create destination directory structure if it doesn't exist (See Remarks). 
#74 Rejected expose C (CRT) _finite(double x) function as IsFinite($x) in Autoit Bowmore
Description

Determines whether the given double-precision floating-point value is finite.

http://msdn2.microsoft.com/en-us/library/sb8es7a8(VS.80).aspx

Note: See TracQuery for help on using queries.