Custom Query (3933 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (469 - 471 of 3933)

Ticket Resolution Summary Owner Reporter
#470 No Bug Displaying '&' symbol in TraySetToolTip() anonymous
Description

Below code will only display "hi" when mouse is placed onto of the tray icon.

TraySetToolTip("hi&")

I've tried escaping the '&' symbol, which isn't necessary, but doesn't work. Is this a bug? At least I think it is.

#471 No Bug Typo error in Helpfile _Excel* examples Wooltown
Description

In the help file in the new beta.

In the example in the help file and in the script, it refers to #include <ExcelCOM_UDF.au3>, it shoud be #include <Excel.au3>

#472 No Bug @ScriptDir returns a slash (\) when script run from root congo (seanw@…
Description

In AutoIT v3.2.12.0, @ScriptDir is documented as NOT returning a trailing slash(\), however due to the Win API if a compiled script is run from a drive root (like an autorun DVD/CD) it does infact return a trailing backslash.

Easy to work around if you can't be 100% sure of where the app will be run:

	$myscript = @ScriptDir
	If StringRight($drive, 1) == "\" Then ;in root of a drive a trailing slash is returned by Windows!
		$t = StringSplit($drive, "\")
		$myscript = $t[1]
	EndIf

The documentation may need to be updated, or the macro modified

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