Custom Query (3931 matches)
Results (190 - 192 of 3931)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #191 | No Bug | Aut2Exe adds aditional empty icon into EXE | ||
| Description |
I discovered BUG in Aut2Exe. In latest beta 3.2.11.5 it places into compiled EXE new aditional icon with ordinal name 10 16x16 16 colors (second icongroup seen in reshacker). Note: In 3.2.10 it was OK. Here is simple script: [code]MsgBox(0,,@AutoItVersion)code When I compile it with AutoIt 3.2.10 it's OK When I compile it AutoIt 3.2.11.5 beta there is new empty second icon and original second/third icons are moved (their position inside EXE is +1) output is shown on pictures a0_10, a0_11 The same result is also with Auto3Wrapper example like that: [code]#AutoIt3Wrapper_icon=my_icon.ico MsgBox(0,,@AutoItVersion)code output is shown on pictures a10, a11 There is more complicated script: [code]#AutoIt3Wrapper_Icon=log_view.ico #AutoIt3Wrapper_useupx=n #AutoIt3Wrapper_run_after=ResHacker.exe -add %out%, %out%, ikony.res , #AutoIt3Wrapper_run_after=upx.exe --best --compress-icons=0 "%out%"code where are more my own icons embeded in my EXE and their positions inside EXE compiled by latest beta is wrong. output is shown on pictures l10, l11 |
|||
| #192 | No Bug | Version column on is outdated in "Create New Ticket" | ||
| Description |
Version column on is outdated in "Create New Ticket" There is "latest" version 3.2.11.2 but in fact latest version should be 3.2.11.5 |
|||
| #193 | Fixed | guictrldelete on context menu already deleted causes win32 exception | ||
| Description |
Attempting to use guictrldelete on a control created by guictrlcreatecontextmenu() which had already been deleted (yes, I know, if I were tracking better that should never happen) causes an "unhandled win32 exception" and a crash. The behavior is repeatable in 3.2.11.5, but does not occur in 3.2.10. Example code: #include <guitreeview.au3>
$gui = guicreate("TEST", 500, 500)
$treeview = guictrlcreatetreeview(0, 0, 500, 500)
$control = guictrlcreatetreeviewitem("TEST", $treeview)
$context = guictrlcreatecontextmenu($control)
$item = guictrlcreatemenuitem("Random", $context)
;filter
$item = guictrlcreatemenuitem("Word", $context)
;seems to
$item = guictrlcreatemenuitem("Another", $context)
;hate similar lines
$item = guictrlcreatemenuitem("One", $context)
guictrldelete($context)
;blank line to try to defeat filter
guictrldelete($context)
guisetstate()
while 1=1
wend
|
|||
