Custom Query (3933 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (442 - 444 of 3933)

Ticket Resolution Summary Owner Reporter
#289 Rejected GuiSetTitle Jayowee
Description

Maybe I just missed it but I can't find something like GuiSetTitle. I mean: With this function you can directly set the title of one of your own created windows using just its winhandle.

Somthing like

$winhandle1 = GuiCreate("first title")
$winhandle2 = GuiCreate("unused title")
GuiSetTitle($winhandle1, "new title")

You know what I mean?

#1243 Rejected Request @FuncName Jayowee
Description

A simple request for a @Funcname. It might be usefull for debugging (e.g. showing the current Function name in a MsgBox), or for use in functions like GUICtrlSetOnEvent or HotKeySet.

Example of personal use:

HotKeySet(@HotKeyPressed)
Send(@HotKeyPressed, 0)
HotKeySet(@HotKeyPressed, $_functionName)

For allowing a hotkey to be captured by an outside/external program. Otherwise, AutoIT always "steals" your hotkeys.

#237 Rejected FileSearchLine() and _ArraySum() Jayowee (jay_paans@…
Description

I have two ideas: 1) FileSearchLine("filename", "searchstring") which returns the (1-based) linenumber of the first occurense of the searchstring.

Possible script:

For $line= 1 To _FileCountLines($file)
 If FileReadLine($file, $line) = "searchstring" Then Return $line
Next

Maybe a parameter could make this function return an array with all occurences (if more than one)...

2) _ArraySum($array) which simply adds up all of the arrays elements. I think a condition must be that all elements are numbers because you can't really add up strings.

Possible script:

Dim $sum=0
For $n= 1 To UBound($array)
 $sum += $array[$n]
Next
Return $sum

I hope these are two ideas you guys can use. Jay

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