Custom Query (3931 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (313 - 315 of 3931)

Ticket Resolution Summary Owner Reporter
#3663 Completed documentation for AdlibRegister() Melba23 rudi
Description

The documentation for this function should point out, that the fist call of the registered function is not immediately, but after the specified delay time.

Suggestion: [snip] Remarks Every 250 ms (or time ms) the specified "function" is called. The first call is not immediately, but after that time. Typically used to check for unforeseen errors. For example, you could use adlib in a script which causes an error window to pop up unpredictably.

Example code, showing that the first call is *AFTER* the specified intervall:

$start=TimerInit()

AdlibRegister("TestFirstRun",10*1000)

while 1

if TimerDiff($start) > 40*1000 then ExitLoop

WEnd

MsgBox(0,"The End","After " & Round (TimerDiff($start)/1000,3) & " seconds.")

Func TestFirstRun()

MsgBox(0,"TestFirstRun",Round (TimerDiff($start)/1000,3) & " seconds.",1)

EndFunc

#3975 Fixed dead link in documentation Jpm rudi
Description

on the page ...

https://www.autoitscript.com/autoit3/docs/pcrepattern.html

... the topmost URL "Return to the PCRE index page." is a dead link, pointing to https://www.autoitscript.com/autoit3/docs/index.html

#3257 Fixed Incorrect format in AutoIt Help File Melba23 rtm533@…
Description

_Date_Time_DOSDateToArray Function In Help Return Value Returns an array with the following format: [0] - Month [1] - Day [2] - Year

But it returns: [0] - Day [1] - Month [2] - Year

Same in _Date_Time_DOSDateTimeToArray Function.

_Date_Time_DOSDateTimeToStr Function: In Help Return Value Returns a date/time string formatted as mm/dd/yyyy hh:mm:ss. But it returns string formatted as dd/mm/yyyy hh:mm:ss.

_Date_Time_DOSDateTimeToFileTime Function: In Help Example Comment in Line: ; 12/31/2007 18:34:20 Format is 31/12/2007 18:34:20

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.