Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (187 - 189 of 3866)

Ticket Resolution Summary Owner Reporter
#663 Fixed AU3_PixelChecksum returns 0x80000000 if more than that Jon Hollinar
Description

While making a c++ program to automate something, I ran into this problem. The DLL returns 0x8000000 if the checksum is more than that. I've searched the bug tracker for this problem and noticed a previous report where you wrote that it works for you. I've tried the same au3 script as was added to that report, and it doesn't end up with a value more than 0x80000000 so it doesn't cause the problem. However, the slightly modified version I've attached DOES cause the problem, using both 3.2.13.9 AND 3.2.12.1... The problem is, it doesn't cause the problem every time because each checksum is different.

#669 Fixed Bad description Valik Andreik
Description

Description from help file of function Dec()example is wrong.

$dec = Dec("FFFF")  ;returns the number 65536

Dec("FFFF") returns the number 65535.

#671 Fixed Hard crash when using $WS_EX_MDICHILD Valik anonymous
Description

This simple example bellow should reproduce a hard crash of the script:

#include <WindowsConstants.au3>

;$hParent = GUICreate("")

GUICreate("", 200, 100, -1, -1, BitOR($WS_POPUP, $WS_CHILD), $WS_EX_MDICHILD);, $hParent)
GUICreate("");, -1, $WS_EX_MDICHILD)

GUISetState(@SW_SHOW)

If i uncomment the $hParent part, then scrip will not crash. Sometimes there is message box saing (title is AutoIt Error): Error allocating memory.

Perhaps it's wrong usage of the style, but i don't think that script should crash like this.

Note: See TracQuery for help on using queries.