I'm having trouble with labels that don't expand to fit their text. According the docs, this should work, but the bottom two labels are truncated. How does expansion work, in general?
#include <GuiConstantsEx.au3>
GUICreate("Label Width Test", 250, 120)
GUICtrlCreateLabel("Five Four Three Two One", 5, 5)
GUICtrlSetBkColor(-1, 0x50cc40)
GUICtrlSetFont(-1, 10, 400, 0, "Arial")
GUICtrlCreateLabel("Six Five Four Three Two One", 5, 35)
GUICtrlSetBkColor(-1, 0x50cc40)
GUICtrlSetFont(-1, 10, 400, 0, "Arial")
GUICtrlCreateLabel("Five Four Three Two One", 5, 65)
GUICtrlSetBkColor(-1, 0x50cc40)
GUICtrlSetFont(-1, 10, 700, 0, "Arial")
GUICtrlCreateLabel("Six Five Four Three Two One", 5, 95)
GUICtrlSetBkColor(-1, 0x50cc40)
GUICtrlSetFont(-1, 10, 700, 0, "Arial")
GUISetState()
While 1
$msg = GUIGetMsg()
Switch $msg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd