MadSc13ntist 0 Posted March 3, 2005 Does anyone know how to populate a GUI List?I attempted the following:$currentlist = GUICtrlRead($List_8)GUICtrlSetData($List_8, $currentlist & '|' & $ip)but this clearly didn't work... the last entry writes over the previous one in the first line of the list box...Does anyone know how to do this?Thanks in advance... Share this post Link to post Share on other sites
Helge 3 Posted March 3, 2005 Try this : GUICtrlSetData($List_8,$ip) Share this post Link to post Share on other sites
CyberSlug 6 Posted March 3, 2005 According to the docs, you should try the following if you want to add items without overwriting the previous list: GUICtrlSetData($List_8, $ip) Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig! Share this post Link to post Share on other sites
MadSc13ntist 0 Posted March 3, 2005 I will go over my code again and find the problem.... I had tried that before but it still made one entry at a time.... I will go over my code again and post back if i find the prob.. Thanks again guys! Share this post Link to post Share on other sites
MadSc13ntist 0 Posted March 7, 2005 Yep... I had a line before it that WAS CLEARING IT! *slaps own forehead* Thanks anyway guys... Thank You CyberSlug!!! You Rock my Au3 World! Share this post Link to post Share on other sites