Custom Query (3922 matches)
Results (133 - 135 of 3922)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1550 | Rejected | inireadsection | ||
| Description |
Hello Autoit-Developers Is it possible to add a @error number to inireadsection on empty section ? current the same results @error=1 section is empty end section not exists. i need different results, @error is section is empty. e.g. @error=2 [section1] [section2] key=value greetings Lite |
|||
| #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)
|
|||
| #1763 | Rejected | incorrect sequence during GUICtrlSetGraphic | ||
| Description |
When using GUICtrlSetGraphic, one should expect that the elements you draw are "placed" on top of each other. This is not the case when you draw a ellipse and a line. (not tested with other combinations) Next example shows this.
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
Opt('MustDeclareVars', 1)
Example1()
; example 1
Func Example1()
Local $msg
GUICreate("My GUI") ; will create a dialog box that when displayed is centered
GUICtrlCreateGraphic(10,10,100,100)
GUICtrlSetBkColor(-1,0xffffff)
GUICtrlSetGraphic(-1, $GUI_GR_COLOR, 0x000000, 0x000000)
GUICtrlSetGraphic(-1, $GUI_GR_ELLIPSE, 20,20,60,60)
GUICtrlSetGraphic(-1, $GUI_GR_COLOR, 0xF0F0F0, 0xF0F0F0)
GUICtrlSetGraphic(-1, $GUI_GR_MOVE, 0,50)
GUICtrlSetGraphic(-1, $GUI_GR_LINE, 100,50)
GUICtrlCreateGraphic(120,10,100,100)
GUICtrlSetBkColor(-1,0xffffff)
GUICtrlSetGraphic(-1, $GUI_GR_COLOR, 0xF0F0F0, 0xF0F0F0)
GUICtrlSetGraphic(-1, $GUI_GR_MOVE, 0,50)
GUICtrlSetGraphic(-1, $GUI_GR_LINE, 100,50)
GUICtrlSetGraphic(-1, $GUI_GR_COLOR, 0x000000, 0x000000)
GUICtrlSetGraphic(-1, $GUI_GR_ELLIPSE, 20,20,60,60)
GUISetState(@SW_SHOW) ; will display an empty dialog box
; Run the GUI until the dialog is closed
While 1
$msg = GUIGetMsg()
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
WEnd
GUIDelete()
EndFunc ;==>Example1
|
|||
