Custom Query
Results (124 - 126 of 3882)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#2969 | Rejected | label size | anonymous | |
Description |
GUICreate("test") GUICtrlCreateLabel("test", 10, 10) GUICtrlSetBkColor(-1, 0xFFFF00) GUISetState() While Sleep(50) WEnd The above code creates label but with the width and height bigger then the text. I would like that it would create label with the size of the text because I would like to exactly know where the first label ends so I could precisely put another label next to the previous label. My system is Windows 7. |
|||
#2151 | Rejected | integrate signtool in AutoIt3Wrapper | anonymous | |
Description |
I like to add digital signatures to some programs. It would be good to integrate the MS signtool inside AutoIt3Wrapper, if a Windows SDK is installed. So the complete handling is easier. Check for Windows SDK: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows (CurrentInstallFolder) is contains the SDK Path Signtool is located ad (CurrentInstallFolder)\Bin\signtool.exe Call like: SIGNTOOL sign /a /t http://timestamp.comodoca.com/authenticode AutoIt3Wrapper_Outfile AutoIt3Wrapper_Outfile_x64 |
|||
#3772 | Fixed | int64 = -9223372036854775808 not handled properly | Jon | Jpm |
Description |
Local $int64Min = Hex(- 9223372036854775808) return 8000000000000001 in fact it should return 8000000000000000 |