Custom Query (3920 matches)
Results (385 - 387 of 3920)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1276 | Fixed | _TicksToTime() displayed seconds increment at wrong time | ||
| Description |
In the _TicksToTime function the value for Seconds is derived by this line... $iSecs = Round(Mod($iTicks, 60)) causing the displayed seconds to increment at 500 ms. I believe the code should be... $iSecs = Int(Mod($iTicks, 60)) so seconds only increments at 1000 ms (like a normal clock). |
|||
| #1277 | Fixed | _GDIPlus_ImageGetGraphicsContext needs to be "disposed" in help example | ||
| Description |
The help file gives an example of how to use this function. At the end of the example, the object is NOT DISPOSED. For a novice (like myself) it is not obvious that this object needs to be disposed (otherwise massive memory leak). It seems all the other "create" functions have a matching "dispose" function but not this one. Through trail-and-error I found the required line was... _GDIPlus_GraphicsDispose($hGraphics) |
|||
| #1278 | Fixed | _FTP_ProgressUpload() - german comment in example in helpfile | ||
| Description |
There is german comment in example in remarks for _FTP_ProgressUpload() ; bei 1 Fortsetzten Func _UpdateProgress($Percentage)
ProgressSet($percent,$percent &"%")
If _IsPressed("77") Then Return 0 ; Abort on F8
Return 1 ; bei 1 Fortsetzten
Endfunc
All information in helpfile should be in English only. |
|||
