Custom Query (3933 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (256 - 258 of 3933)

Ticket Resolution Summary Owner Reporter
#661 Rejected Disable "Beep" using MsgBox ED14
Description

Is there a possibility to disable the nerving BEEP when using an AutoIt MsgBox ?!!!? I've searched the German and these forums, too, but didn't get a suitable answer. Maybe you can add a flag as the last (optional) parameter of that command, so that it will be compatible to the longtime existing command?!

Thanks - ED14

#46 Fixed Wrong example _ArrayTrim in help Gary Emiel Wieldraaijer
Description
#include <Array.au3>

Dim $avArray[5]
$avArray[0] = "ab"
$avArray[1] = "bc"
$avArray[2] = "cd"
$avArray[3] = "de"
$avArray[4] = "ef"

$aNewArray = _ArrayTrim( $avArray, 1, 1,1,3)
_ArrayDisplay($aNewArray,"demo _ArrayTrim")
Exit

;The new array in order should now be "a", "b" , "c" , "d", "e".

Should Be

#include <Array.au3>

Dim $avArray[5]
$avArray[0] = "ab"
$avArray[1] = "bc"
$avArray[2] = "cd"
$avArray[3] = "de"
$avArray[4] = "ef"

$aNewArray = _ArrayTrim( $avArray, 1, 1,0,4)
_ArrayDisplay($aNewArray,"demo _ArrayTrim")
Exit

;The new array in order should now be "a", "b" , "c" , "d", "e".

_ArrayTrim( $avArray, 1, 1,0,4) instead of _ArrayTrim( $avArray, 1, 1,1,3)

#68 Fixed GUIWrapper not saving option Emiel Wieldraaijer
Description

When selecting a RequestExecutionLevel Scite output windows says

+>12:08:22 Starting AutoIt3Wrapper GUI v.1.9.5 -> 1 Change(s) made.

but it's not changed/saved in the script..

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