Custom Query (3922 matches)
Results (406 - 408 of 3922)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #407 | Completed | Document For...In is read-only for AutoIt arrays | ||
| Description |
We need to document that when using an AutoIt array with For...In, the array is read-only. Assignment is not possible. |
|||
| #408 | Completed | inetGet will not download from https with bad certificate | ||
| Description |
https://www.fnmoc.navy.mil/ww3_cgi/dynamic/ww3.b.spac.sig_wav_ht.000.gif Gives a certificate error in IE7, but I can download the file with DotNet. I prefer to use AutoIt $rc = InetGet("https://www.fnmoc.navy.mil/ww3_cgi/dynamic/ww3.b.spac.sig_wav_ht.000.gif","c:\spac.gif");,1,1)
MsgBox(0,"Result", $rc)
MsgBox(0, "Bytes read", @InetGetBytesRead)
|
|||
| #409 | No Bug | Checkbox check goes to Select Case while not programmed to do so | ||
| Description |
First, this script is a copied script of somebody I tried to help url: http://www.autoitscript.com/forum/index.php?showtopic=74538 Go to the menu, choose A. Then a new GUI is made and the old one deleted. Then you see 3 checkboxes. When I press the 3rd one ('C') the Case $msg = $A (the Case where the second GUI is made) is run by again. I can't figure out why. I think this is a bug. Why? Because when $Start = GUICtrlCreateButton is put before $Checkbox1 = GUICtrlCreateCheckbox it just works fine. Also if $how = GUICtrlCreateButton is uncommented there is no fault anymore. #include <GUIConstants.au3>
Dim $Checkbox1, $Checkbox2, $Checkbox3
HotKeySet("{F1}", "How")
$gui = GUICreate("Update Addons - Menu", 300, 300)
;$how = GUICtrlCreateButton( "How To Use", 0, 10)
$Start = GUICtrlCreateButton("Start Selected", 281, 370 , 120, 30)
$Menu = GUICtrlCreateMenu ("Menu")
$A = GUICtrlCreateMenuitem ("A",$Menu)
GUISetState (@SW_SHOW)
While 1
$msg = GUIGetMsg()
Select
Case $msg = $GUI_EVENT_CLOSE
ExitLoop
Case $Msg = $Start
$Read = GUICtrlRead($Checkbox1);start
If $Read = $GUI_CHECKED Then
RunWait("notepad")
Sleep(2000)
EndIf
$Read = GUICtrlRead($Checkbox2);start
If $Read = $GUI_CHECKED Then
RunWait('"' & @ProgramFilesDir & '\Internet Explorer\IEXPLORE.EXE"')
Sleep(2000)
EndIf;end
$Read = GUICtrlRead($Checkbox3)
If $Read = $GUI_CHECKED Then
RunWait("notepad")
Sleep(2000)
EndIf
Case $msg = $A
msgbox(0,"","Second GUI")
;$title = WinGetTitle( "Update Mods -")
Guidelete($gui)
$gui2 = GUICreate("Update Addons - A", 700, 500)
$Checkbox1 = GUICtrlCreateCheckbox("A", 20, 5)
$Checkbox2 = GUICtrlCreateCheckbox("B", 20, 25)
$Checkbox3 = GUICtrlCreateCheckbox("C", 20, 45)
$Start = GUICtrlCreateButton("Start Selected", 281, 370 , 120, 30)
GUISetState (@SW_SHOW)
EndSelect
Wend
Func quit()
exit
EndFunc
Func How()
msgbox(0, "title", "text")
EndFunc
|
|||
