Custom Query (3927 matches)
Results (427 - 429 of 3927)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #428 | No Bug | avast antivirus blocking autoit as a virus | ||
| Description |
the july-03-08 virus sigs update is now blocking autoit scripts from running by not alowing autoit.exe to run. the scripts blocked are ones that i have authored for simple process kills. so avast is show a false positive in this case. cant seem to get through to avast on this issue. |
|||
| #429 | Rejected | shellexecute() new feature | ||
| Description |
I have code that i would use runasset() to change the profile that a program will run under with version 3.10, i used shellexecute() after runasset() to elevate the shellexecute to specifig user privileges. i know i can use ShellExecute("rundll32.exe", "shell32.dll, OpenAs_RunDLL " & $filename, "", "runas") to get the windows run as box, but this requires to enter username and password after they have been entered into the autoit code to start up the application. I am suggesting something like shellexecuteas() or something similar to runas() so that we can specify in the code username and password to use. |
|||
| #430 | Duplicate | Deleting disabled image controls hard crashes AutoIt | ||
| Description |
The summary and the following code should be enough to understand the problem. Please take any image file say "example.jpg" and put it in the same directory as the script - if the file does not exist, the crash won't occur. Global Const $GUI_DISABLE = 128
Local $msg
Local $tp = @TempDir
Local $ginstall = GUICreate("installer",420,375)
Local $b_yes = GUICtrlCreateButton ("Yes",235,335,80,26)
FileInstall("example.jpg",$tp &"\top",1)
Local $i_img = GUICtrlCreatePic ($tp &"\top",0,52,420,270)
GuiCtrlSetState(-1,$GUI_DISABLE) ;$i_img IS NOW DISABLED
GUISetState()
While 1
$msg = GUIGetMsg ()
Switch $msg
Case $b_yes
GUICtrlDelete($i_img) ;CRASH AT THIS POINT
GUICtrlDelete($b_yes)
ExitLoop
EndSwitch
WEnd
And if it is of any use, here's the information given by Windows:
|
|||
