Custom Query (3926 matches)
Results (169 - 171 of 3926)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #170 | No Bug | FileCopy unable to copy new files when source files number excess 10k | ||
| 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. |
|||
| #171 | Rejected | consolewrite() documentation addendum | ||
| Description |
Assuming the behavior is desired, and not leveraging a bug... If there are any other cool behaviors possible (moving the cursor up a line, writing from right to left, etc.), it would be nice if they were documented somewhere as well. Suggest adding this line (or similar) after "...unless the script is compiled as a console application...: In a compiled console application, prepending @CR to "data" will reset the cursor location to the beginning of the current line. Sample code demonstrating functionality (by ResNullis) #Region ; Directives created by AutoIt3Wrapper_GUI #AutoIt3Wrapper_Change2CUI=y #EndRegion ; Directives created by AutoIt3Wrapper_GUI $ClearProgress = 0 $progress = "ùùùùùùùùùù";Chr(249) $processing = "Processing [" For $i = 1 To 3
Next $DisplayProgress = $progress ConsoleWrite(@CR & $processing & $DisplayProgress & "]") ConsoleWrite(@CRLF & "DONE") |
|||
| #172 | Fixed | StructureConstants.au3 - $tagREBARINFO | ||
| Description |
Global Const $tagREBARINFO = DllStructCreate("uint cbSize;uint fMask;hwnd himl")
should be Global Const $tagREBARINFO = "uint cbSize;uint fMask;hwnd himl" It's used in GuiReBar.au3 --> Func _GUICtrlRebar_GetBarInfo($hWnd) ... Local $tINFO = DllStructCreate($tagREBARINFO) ... |
|||
