Custom Query (3927 matches)
Results (415 - 417 of 3927)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1331 | Fixed | Help example for _GuiCtrlDTP_SetSystemTimeEx uses wrong struct. | ||
| Description |
The 3.3.1.6 Beta include file StructureConstants.au3 no longer defines $tagDTPTIME which is used in the help. So perhaps the examples for _GuiCtrlDTP_GetSystemTimeEx and _GuiCtrlDTP_SetSystemTimeEx should be using $tagDTPRANGE which begins with the old $tagDTPTIME variable types, or $tagDTPTIME could be put back in StructureConstants.au3, or the $tagDTPTIME struct could be defined in the examples. |
|||
| #1332 | Fixed | Mod funktion wrong output | ||
| Description |
mod("175367809538821201","1767842701") returns 421042353 but its wrong in real its 421042338 why autoit says its 421042353 ?? funny mathematic bug oO |
|||
| #1338 | Fixed | _arrayDisplay() GUI position error | ||
| Description |
The _arrayDisplay() function calculates a very poor GUI location when displaying large arrays. Bug Report Environment AutoIt:3.3.1.6 (Os:WIN_XP/X86/Service Pack 3 Language:0409 Keyboard:00000809 Cpu:X64) When diplaying arrays with long rows and many columns of data, using _arrayDisplay(), the GUI X position is calculated as a large negative value that positions the GUI off the visible screen. To see the displayed array you have to right clisk on the taskbar button and select maximize which fits the GUI to the monitor display #include <array.au3>
#include <string.au3>
Global $g_aTestArray[5][240]
AdlibRegister("_DisplayWindowSize", 1000)
_PopulateArray($g_aTestArray)
_ArrayDisplay($g_aTestArray, "Display Array With Longish Rows")
Exit
Func _PopulateArray(ByRef $aTestArray)
Local $fPopulate = True
;Generate some data for the array
For $i = 0 To 4
For $j = 0 To 239
$fPopulate = Random(0, 1, 1)
If $fPopulate Then
$aTestArray[$i][$j] = _StringRepeat(Chr(Random(48, 90, 1)), Random(10, 40, 1))
EndIf
Next
Next
EndFunc ;==>_PopulateArray
Func _DisplayWindowSize()
Local $aPos = 0
$aPos = WinGetPos("Display Array With Longish Rows")
If Not @error Then
AdlibUnRegister("_DisplayWindowSize")
MsgBox(0, "_ArrayDisplay Window Size", "X = " & $aPos[0] & @CRLF & "Y = " & $aPos[1] & @CRLF & "W = " & $aPos[2] & @CRLF & "H = " & $aPos[3] & @CRLF)
EndIf
EndFunc ;==>_DisplayWindowSize
|
|||
