Modify

Opened 18 years ago

Closed 18 years ago

Last modified 18 years ago

#478 closed Bug (No Bug)

Koda (FormDesigner)

Reported by: pechkov@… Owned by:
Milestone: Component: Other
Version: 3.2.12.0 Severity: None
Keywords: Cc:

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,
...

Attachments (0)

Change History (3)

comment:1 by Valik, 18 years ago

Resolution: No Bug
Status: newclosed

Koda is not our product. Contact the developers of Koda to report issues to them.

comment:2 by anonymous, 18 years ago

Ok, but this message:
"WARNING: $WS_SYSMENU: possibly used before declaration." ?

With AutoIt 3.2.10 is working properly. I check twice.

comment:3 by Valik, 18 years ago

That is a really old version of AutoIt. Things changed. I suspect you are using an old version of Koda. But at any rate, Koda is responsible for generating runnable code, not us.

Modify Ticket

Action
as closed The ticket will remain with no owner.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.