Hi Guys
Currently I have hardcoded an element
However, once the GUI is loaded I cannot change those elements, well I can but it doesn't change the array I built.
Is there a way to aks a question so I can enter the string BEFORE it gets built?
MsgBox doesn't have anyway of entering text, is there anyway around this.
Thanks as always guys
Currently I have hardcoded an element
[ code ]
GUICtrlCreateLabel("String", 10, 112)$boxd = GUICtrlCreateInput("1,2,3,4", 145, 109, 80, 16)GUISetState() Global $stringarray = StringSplit(GUICtrlRead($boxd),",",2)Global $arraysize = UBound($stringarray)
However, once the GUI is loaded I cannot change those elements, well I can but it doesn't change the array I built.
Is there a way to aks a question so I can enter the string BEFORE it gets built?
[ code ]
HERE FOR EXAMPLE GUICtrlCreateLabel("String", 10, 112)$boxd = GUICtrlCreateInput("1,2,3,4", 145, 109, 80, 16)GUISetState()Global $stringarray = StringSplit(GUICtrlRead($boxd),",",2)Global $arraysize = UBound($stringarray)
MsgBox doesn't have anyway of entering text, is there anyway around this.
Thanks as always guys