Hallo, ich hab mal wieder eine Frage^^
Kann man es hinbekommen, das ein ListBox (GuiCtrlCreateList) die Items von Links nach rechts anortnet, also nicht von oben nach unten?
Spoiler anzeigen
[autoit]
#include <GUIConstantsEx.au3>
#include <ListBoxConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 578, 26, 337, 709)
$List1 = GUICtrlCreateList("", 2, 2, 571, 19, BitOR($LBS_SORT,$LBS_STANDARD,$WS_VSCROLL,$WS_BORDER))
GUICtrlSetData(-1, "Test1|Test2|Test3|Test4|Test5")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
Also das die Items da in einer reie sind, und man sie trotzdem einzeln auswählen kann!