Custom Query (3922 matches)
Results (385 - 387 of 3922)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #386 | Wont Fix | Notification about "Announcements and Site News" on Italian | ||
| Description |
I recieving the notification of "Announcements and Site News" to my email on Italian (i think it's Italian). Here is a part of that message: Title: Notifica di Nuova Discussione ad un forum a cui sei iscritto ( AutoIt Forums ) Body: MrCreatoR, Jon ha aperto una nuova discussione dal titolo "AutoIt v3.2.12.1 (Beta) Released" nel forum "Announcements and Site News". ... I am viewing the English version of the forum. BTW: sometimes the same happens with standard notification about subscribed topics/forums. Forum Topic: http://www.autoitscript.com/forum/index.php?s=&showtopic=73376 Thanks. |
|||
| #387 | Fixed | Change DllCallbackFree() to check handle validation or erase it | ||
| Description |
From the help file: If handle is invalid, an AutoIt runtime error will be thrown, and the script will terminate! First of all, i think none of built-in functions should not to hard crash the script. But if it's really inevitably, those functions should (optional?) recieve handle ByRef, and change the $handle to 0 after it's releasing the CallBack. Something like this: Func _DllCallbackFree(ByRef $Handle) If $Handle > 0 Then DllCallbackFree($Handle) $Handle = 0 Return EndIf Return -1 EndFunc Because for now there is a chance that our script can crash when it's not supose to (in the middle of some task). Thanks. |
|||
| #388 | Fixed | _GUICtrlToolbar_SetButtonSize example in helpfile incorrect | ||
| Description |
Example for _GUICtrlToolbar_SetButtonSize does not show command being used. It shows $aSize = _GUICtrlToolbar_GetButtonSize ($hToolbar). This example is for _GUICtrlToolbar_GetButtonSize. Latest beta helpfile also has error. |
|||
