﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2134	Combobox style $CBS_UPPERCASE produces undesired results	cannondale		"Creating a Combobox with style $CBS_UPPERCASE produces undesired results under win2000, winxp and win7 using Autoit v3.3.8.0.

The output of the code below can be found at http://jer826.com/au3/autoit_combo.gif

{{{
Global Const $CBS_UPPERCASE = 0x2000
Global Const $GUI_EVENT_CLOSE = -3
Local $msg

GUICreate(""My GUI"")

GUICtrlCreateCombo(""A"", 5, 10, 35, 240, $CBS_UPPERCASE)
GUICtrlCreateCombo(""A"", 55, 10, 35, 240)

GUISetState(@SW_SHOW)

While 1
    $msg = GUIGetMsg()

    If $msg = $GUI_EVENT_CLOSE Then ExitLoop
WEnd
GUIDelete()

}}}

"	Bug	closed		AutoIt	3.3.8.0	None	No Bug		
