Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (31 - 33 of 3866)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
Ticket Resolution Summary Owner Reporter
#170 No Bug FileCopy unable to copy new files when source files number excess 10k anonymous
Description

When using filecopy with wildcard, like FileCopy ("X:\*.bin", "C:\Program Files\test") If source folder contains more than 10000 files, it will run but wouldn't copy any files to the target folder.

#180 No Bug Could you make AitoIT Window Info Selectable? anonymous
Description

On all pages, not just the Summary page?

#184 No Bug Child window must use GUICtrlSetTip() if the parent uses it too MsCreatoR <mscreator@…>
Description

Forum link...

When the parent window have GUICtrlSetTip() for at least one control, then the child window must have it as well, otherwise when we reactivate the app, we can see only the child window.

Reproduction:

Run example bellow, activate some other window (not the desktop), and activate the GUI back (by clicking on the button on tasks panel), you will see only the child window.

#include <GuiConstants.au3>

$GUI = GUICreate("Test Script", 300, 200)
GUICtrlCreateButton("Button", 20, 40, 60, 20)
GUICtrlSetTip(-1, "TipText")
GUISetState(@SW_SHOW, $GUI)


GUISetState(@SW_DISABLE, $GUI)
$Child_GUI = GUICreate("Child", 200, 120, -1, -1, -1, -1, $GUI)
;GUICtrlCreateLabel("Label", -99, -99)
;GUICtrlSetTip(-1, "Child TipText")
GUISetState(@SW_SHOW, $Child_GUI)

While 1
    $nMsg = GUIGetMsg(1)
    Switch $nMsg[0]
        Case $GUI_EVENT_CLOSE
            If $nMsg[1] = $GUI Then Exit
            
            GUISetState(@SW_ENABLE, $GUI)
            GUIDelete($Child_GUI)
    EndSwitch
WEnd

If you uncomment two lines in the code, this "effect" is gone...

Tested with AutoIt v3.2.8.1/3.2.10.0.

Thanks.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
Note: See TracQuery for help on using queries.