﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
478	Koda (FormDesigner)	pechkov@…		"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,
...

"	Bug	closed		Other	3.2.12.0	None	No Bug		
