Custom Query
Results (265 - 267 of 3893)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #980 | Fixed | Scite4AutoIt3 - include latest Koda version | Jos | Zedna |
| Description |
In Scite4AutoIt3 from 2009-05-21 there is included Koda version 1.7.0.5 (2008-02-20) Beta I think it will be better to include latest Koda version 1.7.1.0 (2009-04-27) Release in the next Scite4AutoIt3. Here is Koda changelog: Release 1.7.1.0 (2009-04-27) 2009-04-19 - Fixed: AV when resetting Style/ExStyle [FS#48] (thanks Zedna) 2009-04-17 - Fixed: Resizing - generated code is wrong (default) [FS#47] (thanks Zedna) 2009-04-13 - Added: hotkey property for Dummy control [FS#45] (thanks BaKaMu) 2009-04-12 - Fixed: removed some unnecessary properties Beta 1.7.0.11 (2009-04-12) RC2 2009-03-25 - Fixed: TAObj control loose it's dimensions after reloading [FS#40] (thanks BaKaMu) 2009-03-25 - Fixed: font for the TAdate control is not generating [FS#39] (thanks BaKaMu) Beta 1.7.0.10 (2009-03-25) RC1 2009-03-25 - Fixed: various small translation fixes 2009-03-19 - Fixed: Import - bad ClientWidth, ClientHeight, Position [FS#36] (thanks Zedna) 2009-03-13 - Added: special "group of controls" control [FS#19] (thanks Zedna) Beta 1.7.0.9 (2009-02-10) 2009-02-09 - Fixed: handling of "-1" for styles in Au3import 2009-02-09 - Added: icon selector now can select standard and small icons for the Button (thanks socratessa) 2009-02-09 - Fixed: handling of CustomPath where was icons with index (thanks socratessa) 2009-02-06 - Fixed: Koda can handle uncompressed 256x256 Vista icons 2009-02-05 - Fixed: correct Align in window calculations (thanks Valik) 2009-02-05 - Fixed: indentation when updating script (thanks Valik) 2009-02-05 - Changed: Updown no more raise error when entering incorrect value (thanks Valik) 2009-02-05 - Fixed: StatusBar alignment and last panel (thanks Zedna) 2008-09-05 - Fixed: stupid bug when keys not worked properly in the main icon list (thanks Zedna) 2008-09-04 - Changed: order of menus in code generator output to fix "main menu" issue (thanks Zedna) Beta 1.7.0.8 (2008-10-03) 2008-09-03 - Fixed: various small fixes and cleanups in new code 2008-09-02 - Added: Button now support coloring 2008-09-02 - Changed: rewritten Button control to support new icons code 2008-09-01 - Added: Picture editor may be invoked by doubleclick too 2008-09-01 - Changed: method of working with custom picture paths (changed method of loading break this anyway) 2008-09-01 - Changed: speedup loading of new Icon control, when icon loading from large libraries 2008-09-30 - Fixed: Form Captor example generated non-closed warning tag that cause conversion failure 2008-09-30 - Added: poFixed for form, where actual position not depend on form position (idea by Valik) 2008-09-29 - Changed: rewritten Picture Editor to support new Icon and other controls 2008-09-27 - Changed: rewritten Icon control (now much closer to an actual Autoit control & hi-color icons support) 2008-09-24 - Added: help handlers and ID's to all property editors Beta 1.7.0.7 (2008-09-24) 2008-09-24 - Changed: finished icon support rewriting, now retreiving of hi-color icons supported 2008-09-05 - Fixed: using wrong row when changing icon in list after deleting one of icon (thanks Zedna) 2008-09-05 - Fixed: AV when deleting (attached) context menu (long time bug) 2008-09-05 - Fixed: AV when deleting attached toolbar or imagelist (thanks Zedna) 2008-09-05 - Fixed: AV when invoke taborder dialog on toolbutton (thanks Zedna) 2008-09-05 - Fixed: no toolbar icon in taborder dialog (thanks Zedna) Beta 1.7.0.6 (2008-09-03) 2008-09-03 - Changed: experimental feature - not keep bitmaps inside form anymore (not supported customized paths yet) 2008-09-03 - Added: code generator part for toolbar/imagelist 2008-09-02 - Added: alignment for ListView columns 2008-09-02 - Fixed: form modified flag not set when editing properties (thanks Zedna) 2008-09-01 - Added: new imagelist implementation, icon resources 2008-05-10 - Added: initial toolbar and imagelist implementation |
|||
| #983 | Fixed | InetGet* functions failing under XP SP2 | Valik | idbirch |
| Description |
These functions don't work for me at all under WinXP SP2 however work fine on my Win7 machine. Example using InetGetSize: $test = InetGetSize("http://support.easystreet.com/easydsl/testfile.bin")
msgbox (0,"dwd", $test)
>"C:\Program Files\AutoIt3\SciTE\AutoIt3Wrapper\AutoIt3Wrapper.exe" /run /beta /ErrorStdOut /in "F:\test3.au3" /autoit3dir "C:\Program Files\AutoIt3\beta" /UserParams +>11:30:20 Starting AutoIt3Wrapper v.1.10.1.14 Environment(Language:0409 Keyboard:00000809 OS:WIN_XP/Service Pack 2 CPU:X86 ANSI) >Running AU3Check (1.54.15.0) from:C:\Program Files\AutoIt3\beta +>11:30:20 AU3Check ended.rc:0 >Running:(3.3.1.0):C:\Program Files\AutoIt3\beta\autoit3.exe "F:\test3.au3" !>11:30:20 AutoIT3.exe ended.rc:-1073741819 +>11:30:22 AutoIt3Wrapper Finished >Exit code: -1073741819 Time: 1.873 Environment = 3.3.1.0 under WIN_XP/Service Pack 2 X86 Running under 3.3.0.0 the filesize is returned correctly. Same issue for this script (which also works fine under Win7): $size = 52345034
$hDownload = InetGet("http://support.easystreet.com/easydsl/testfile.bin", @TempDir & "\testfile.bin",1,1)
$timer = TimerInit()
Do
Sleep(1000)
If TimerDiff($timer) > 60000 Then
InetClose($hDownload)
$Aborted = True
EndIf
Until InetGetInfo($hDownload, 2) ; Check if the download is complete.
Local $nBytes = InetGetInfo($hDownload, 0)
InetClose($hDownload) ; Close the handle to release resourcs.
MsgBox(0, "", "Bytes read: " & $nBytes)
>"C:\Program Files\AutoIt3\SciTE\AutoIt3Wrapper\AutoIt3Wrapper.exe" /run /beta /ErrorStdOut /in "F:\test.au3" /autoit3dir "C:\Program Files\AutoIt3\beta" /UserParams
+>11:44:33 Starting AutoIt3Wrapper v.1.10.1.14 Environment(Language:0409 Keyboard:00000809 OS:WIN_XP/Service Pack 2 CPU:X86 ANSI)
>Running AU3Check (1.54.15.0) from:C:\Program Files\AutoIt3\beta
F:\test.au3(9,106) : ERROR: InetGet() [built-in] called with wrong number of args.
$hDownload = InetGet("http://support.easystreet.com/easydsl/testfile.bin", @TempDir & "\testfile.bin",1,1)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
F:\test.au3 - 1 error(s), 0 warning(s)
!>11:44:33 AU3Check ended.rc:2
>Running:(3.3.1.0):C:\Program Files\AutoIt3\beta\autoit3.exe "F:\test.au3"
!>11:44:35 AutoIT3.exe ended.rc:-1073741819
+>11:44:36 AutoIt3Wrapper Finished
>Exit code: -1073741819 Time: 3.170
I can't run this one under 3.3.0.0 for obvious reasons. |
|||
| #985 | Fixed | errors in der helpfile for AutoIt 3.3.1.0 Beta | Valik | Tweaky |
| Description |
Hi, we have translate the english helpfile into german. So we see that some errors are in der the english helpfile. Here ist an example what I mean (from 3.3.0.0) here an example: 13 PixelSearch Number of variables wrong / variables differently / variables in different order (is | should) 4 | 8 Syntax: PixelSearch ( left, top, right, bottom, color [, shade-variation [, step [, hwnd]]] ) Parameters: left top right bottom colour shade-variation step hwnd 4 | 8 means that the parameter 1, 2, 3 and 4 are identical in the syntax an the parameter list. Parameter 5 ist wrong. Here it is only a write error (color <> colour) here an example: 70 _GUICtrlListView_SimpleSort Number of variables wrong / variables differently / variables in different order (is | should) 2 | 3 Syntax: _GUICtrlListView_SimpleSort($hWnd, ByRef $vDescending, $iCol) Parameters: $hWnd $vDescending 2 | 3 means that the parameter 1 and 2 are identical in the syntax an the parameter list. Parameter 3 is missing. If you don`t know what I mean, please look here http://www.autoitscript.com/trac/autoit/ticket/877 |
|||
