normal sollte das gehen ich hatte mal eine mit über 700, poste mal dein code villeicht haste irgendwo einen fehler.
mir ist gerade wieder was eingefallen, in autoit kann man maximal 89 zeichen pro zeile verwenden.
am bestern du machst es so:
Code:
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$combodata = "rofl | test | xDD | abc | lool"
$combodata &= "rofl2 | test2 | xDD2 | ab2 | lool2" ;<---- immer so weiter
$combodata &= "rofl3 | test3 | xDD3| ab3 | lool3" ;<------
$asdas = GUICreate("Form",350,350,-1,-1,-1,-1)
GUICtrlCreateCombo("",160,80,150,21,-1,-1)
GUICtrlSetData(-1,$combodata)
GUISetState(@SW_SHOW,$asdas)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
MFG Zocker