Custom Query (3910 matches)
Results (334 - 336 of 3910)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #964 | No Bug | _ArrayCombinations() not returning expected results. | ||
| Description |
This function skips a large amount of the combinations, because it apparently does not do a "look behind". In the code below it starts by missing 00 but that's not too serious. It does begin to get serious starting at the point where it jumps from 19 to 23. After that each decade is progressively worse. This would not be the expected result of a function with this name. #include<array.au3> Dim $aArray[10] = [0,1, 2, 3, 4, 5, 6, 7, 8, 9] $aArrayCombo = _ArrayCombinations($aArray, 2) _ArrayDisplay($aArrayCombo) This isn't urgent since I already have one that will return the desired results but I thought it best that you be aware of this. |
|||
| #975 | Fixed | GUICtrlCreateCheckbox() on tabs. | ||
| Description |
The code is pretty self explanatory. Black areas (desktop color) where the checkbox text should be. If You comment out the Tab items then it changes to gray and if you further comment out the tab itself everything is fine. $Frm_Main = GUICreate("Test Form", 400, 300)
$Tab = GUICtrlCreateTab( 0, 0, 400, 300)
$hTab_1 = GUICtrlCreateTabItem("Tab 1")
$hCheck = GUICtrlCreateCheckBox("Demonstartion", 10, 30, 150, 20)
GUICtrlCreateTabItem("")
GUISetState()
While 1
$Msg = GUIGetMsg()
Switch $Msg
Case -3
Exit
EndSwitch
WEnd
Also if you comment out the tab items (leave the tab in) and set the GUI background color to 0xFFFFFF then it doesn't show the grey area. |
|||
| #1000 | Fixed | Error Message | ||
| Description |
_GUICtrlListBox_Create with 3.3.1.0 beta result error message _WinAPI_CreateWindowEx: Cannot find window class |
|||
