Custom Query
Results (133 - 135 of 3893)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #408 | Completed | inetGet will not download from https with bad certificate | Valik | bart.wical@… |
| 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 | anonymous | |
| 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
|
|||
| #3897 | Duplicate | incorrect arithmatic with Hex notation | anonymous | |
| Description |
When you try to subtract using hex notation, the values end up being added. The problem occurs in 3.3.16.0, x32 & x64. Tested in win10 & win7. v3.3.14.5 seems to work as expected. ConsoleWrite(0x04 - 0x02 & @CRLF) ;returns 6 ConsoleWrite(4 - 0x02 & @CRLF) ;returns 6 ;these seem to be ok. ConsoleWrite(0x04 - 2 & @CRLF) ;returns 2 ConsoleWrite(0x04 - Int(0x02) & @CRLF) ;returns 2 ConsoleWrite(0x04 + 0x02 & @CRLF) ;returns 6 ConsoleWrite(0x04 / 0x02 & @CRLF) ;returns 2 ConsoleWrite(0x04 * 0x02 & @CRLF) ;returns 8 |
|||
