Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (112 - 114 of 3866)

Ticket Resolution Summary Owner Reporter
#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

#478 No Bug Koda (FormDesigner) pechkov@…
Description

AutoIt 3.2.12.1

I use Koda (FormDesigner) for creating GUI interface, uncheck the "WS_MINIMIZEBOX", and generating code. Result:

#include <GUIConstants.au3>

#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 625, 445, 193, 125, BitOR($WS_SYSMENU,$WS_CAPTION,
$WS_POPUP,$WS_POPUPWINDOW,$WS_BORDER,$WS_CLIPSIBLINGS))
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
	$nMsg = GUIGetMsg()
	Switch $nMsg
		Case $GUI_EVENT_CLOSE
			Exit

	EndSwitch
WEnd

Line with "GUICreate()" is separated with @CrLf character. When I start the script, result is:

D:\AutoIt files\temp3.au3(14,66) : WARNING: $WS_SYSMENU: possibly used before declaration. $Form1 = GUICreate("Form1", 625, 445, 193, 125, BitOR($WS_SYSMENU, ~ D:\AutoIt files\temp3.au3(14,78) : WARNING: $WS_CAPTION: possibly used before declaration. $Form1 = GUICreate("Form1", 625, 445, 193, 125, BitOR($WS_SYSMENU,$WS_CAPTION, ...

Note: See TracQuery for help on using queries.