Why does only the first @crlf come in the list?
[ autoit ]
#include <WindowsConstants.au3> #include <guiconstants.au3> $GUI=GUICreate("", 200, 200) $list1=GUICtrlCreateList("", 5, 5, 190, 190, BitOR($WS_BORDER, $WS_VSCROLL)) GUISetState() GUICtrlSetData($list1, "Justsomerandomdata") GUICtrlSetData($list1, @CRLF) GUICtrlSetData($list1, "Moredansomness") GUICtrlSetData($list1, @CRLF) GUICtrlSetData($list1, "okaythatsit") WHile 1 $msg=GUIGetMsg() If $msg=$GUI_EVENT_CLOSE then ExitLoop WEnd