Custom Query
Results (286 - 288 of 3893)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1631 | Rejected | Get FilePath from file handle | Jon | evilertoaster |
| Description |
I had previously sent this as a cod submission via the method described here: http://www.autoitscript.com/autoit3/files/coders/submission_spec.txt But it appears support@… is no longer a valid email address according to the yahoo mailer daemon... Regardless, here was the email: In relation to this post: http://www.autoitscript.com/forum/index.php?showtopic=114541 The solution is trivial, (I've attached a code submission implementing it)... but so is the issue itself. Because of the nature of 'includes' in AutoIt there's not much practicality to providing this function, but it may have use in plugins or ActiveX/COM where you may be trying to get the FilePath from a handle given to you by non-public code. |
|||
| #1633 | Fixed | Second AdlibRegister function starts at once when first function is to slow | Jon | funkey |
| Description |
If you have at least two funtions startet by AdlibRegister an one function is to slow, then the second one starts at once. See the example. Try with less and more sleep time. Opt('GUIOnEventMode', 1)
GUICreate("Bugtest AdlibRegister", 300, 50)
GUISetOnEvent(-3, "_Exit")
GUICtrlCreateCheckbox("Switch adlib function", 10, 20)
GUICtrlSetOnEvent(-1, "_StartAdlib")
GUICtrlSetState(-1, 4)
GUISetState()
AdlibRegister("_Something", 100)
While 1
Sleep(100000)
WEnd
Func _StartAdlib()
Local $CheckBoxState = GUICtrlRead(@GUI_CtrlId)
ToolTip($CheckBoxState)
If $CheckBoxState = "1" Then
AdlibRegister("_Adlib", 60000 * 10) ;10 Minutes
ConsoleWrite("1" & @cr)
Else
AdlibUnRegister("_Adlib")
ConsoleWrite("0" & @cr)
EndIf
EndFunc
Func _Something()
Sleep(50) ; with 50 msec delay sometimes _Adlib() is called!
;~ Sleep(100) ; with 100 msec delay _Adlib() is called allways!
EndFunc
Func _Adlib()
ConsoleWrite("Adlib function called!!" & @cr)
EndFunc
Func _Exit()
Exit
EndFunc
|
|||
| #1648 | Works For Me | UDF community | Jon | Wooltown |
| Description |
Is it possible to have an area where users can upload UDFs and others users can make their contributions? Perhaps some online version handling? Today everything is under Example Scripts and is hard to find. Many good examples exist for example. Active Directory UDF, Excel UDF, Mail UDF and lots of more The user who creates the initial UDF should be able td decide if anyone can update the source or if the original creator must do a final accept of the contributed update of the code. |
|||
