Custom Query
Results (121 - 123 of 3870)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1886 | Rejected | 64 or 128-bit numbers | anonymous | |
Description |
I would like to see 128-bit numbers handled in AutoIt3. 128-bit numbers would be useful as a structure container for GUIDs. you could map out a $tagGUID onto a single 128-bit number and then simply use it, I would hope. 64-bit numbers are useful because the filesystem of windows uses 64-bit addressing. AND, if you request disk space from windows using GetDiskFreeSpaceEx() (for WinNT systems with kernel32.dll) or its fallback GetDiskFreeSpace() (for win9x/me systems), the former uses PULARGEINTEGER (ULARGEINTEGER) which is a structure that can be addressed using .QuadPart as a 64-bit unsigned integer. 64-bit integers are useful because of their sheer size/range. you can do PLENTY more with 64-bit numbers. make better calculators, etc. 128-bit would be even better. |
|||
#2027 | Wont Fix | ;-) | anonymous | |
Description |
;This programm working correctly... #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 121, 61, 192, 114) $Button1 = GUICtrlCreateButton("Line _1 Line_2", 8, 8, 105, 33, $BS_MULTILINE) ;GUICtrlSetColor(-1, 0x808080);<=== BUG GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1
WEnd ;...but instruction at lane 9 [GUICtrlSetColor(-1, 0x808080)] destroyed format of button ($BS_MULTILINE) |
|||
#3688 | Rejected | <snip> | Jon | <snip> |
Description |
<snip> |