Custom Query
Results (280 - 282 of 3893)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #955 | No Bug | Worm WIN32/SillyAutoRun.AYD detected in EXE file | b.berlemont@… | |
| Description |
Hi all, I'm using the AutoIt version 3.3 and I have created an Exe file with Aut2exe.exe. With new version of eTrust Antivirus from Computer Associates, it detectes the Worm WIN32/SillyAutoRun.AYD in the Exe file. I'm joining print screens. |
|||
| #956 | No Bug | SQLite include couldn't be handled by Obfuscator /striponly | Jos | Zedna |
| Description |
When I include SQLite in my script and try to do striponly by Obfuscator like this: #AutoIt3Wrapper_Run_Obfuscator=y #obfuscator_parameters=/striponly #include <SQLite.au3> #include <SQLite.dll.au3> then error occurs in Obfuscator:
I don't know if this belongs to Component "Scite4AutoIt" or "Standard UDFs" so you may correct this if it's wrong. |
|||
| #959 | No Bug | GUICtrlGetState doesn't work for listview with enable flag | benm@… | |
| Description |
Hi All, It seems that GUICtrlGetState doesn't work with a listview. You can see in script below there is no change regardless of whether the listview is disabled or enabled. I'm using this to try to reduce flicker. Thank you. --Ben benm@… #include <ListViewConstants.au3>
#include <GuiConstantsEx.au3>
$FormHelicoil = GUICreate("FormHelicoil", 852, 528)
Local $lis_helicoil = GUICtrlCreateListView("Helicoils", 48, 118, 241, 313)
GUICtrlCreateListViewItem("Hello", $lis_helicoil)
GUICtrlCreateListViewItem("Hello2", $lis_helicoil)
GUISetState(@SW_SHOW)
Do
GUICtrlSetState($lis_helicoil, $GUI_DISABLE)
MsgBox(0, "IsControl Enabled?", isControlEnabled($lis_helicoil))
GUICtrlSetState($lis_helicoil, $GUI_ENABLE)
MsgBox(0, "IsControl Enabled?", isControlEnabled($lis_helicoil))
$Msg = GUIGetMsg()
Until $Msg = $GUI_EVENT_CLOSE
Exit
Func isControlEnabled(ByRef $tControl)
;Return GUICtrlGetState($tControl)
If BitAND(GUICtrlGetState($tControl), $GUI_ENABLE) = $GUI_ENABLE Then
Return 1
Else
Return 0
EndIf
EndFunc ;==>isControlEnabled
|
|||
