﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
3741	ERROR IN GUISetStyle EXAMPLE	odaylton.prof@…	Jpm	"Text translated from Portuguese by google - please apologize for any errors

First I have to thank the development team for product quality and the ease with which it is possible to develop tools with AutoIt.

In 2nd place apologize for disturbing you with my comments but I found relevant the following suggestions:
Let's get to the problem ...
in the GUISetStyle function ex on line 20 we have:
{{
GUISetStyle(BitOR($WS_POPUPWINDOW, $WS_THICKFRAME), BitOR($WS_EX_CLIENTEDGE, $WS_EX_TOOLWINDOW))
}}
And while running the same is apparently all right until the user resizes the window.
When this occurs the title bar disappears and even if the user clicks the button to return to the original the window changes the border but does not redisplay the title bar.
My suggestion would be to change to:
{{
GUISetStyle(BitOR($WS_CAPTION, _	;fixa Barra de titulo
			$WS_POPUPWINDOW, _
			$WS_THICKFRAME), _
		BitOR($WS_EX_CLIENTEDGE, _
			$WS_EX_TOOLWINDOW))
}}
Thank you for your attention
"	Bug	closed	3.3.15.1	AutoIt	3.3.14.0	None	Completed	GUISetStyle	
