Sorry, I ment it, right now its laid out like this: $gems = GUICreate("Gem Seller", 219, 157, 887, 250) $SellSelected = GUICtrlCreateButton("Sell Selected", 8, 40, 89, 25) $Sellall = GUICtrlCreateButton("Sell all", 68, 96, 73, 25) $Select = GUICtrlCreateCombo("Choose a Gem to sell!", 8, 8, 193, 25, BitOR($CBS_DROPDOWN, $CBS_AUTOHSCROLL)) $gemtype = GUICtrlSetData(-1, "Ruby|Emerald|Sapphire|Topaz|") $status = _GUICtrlStatusBar_Create($gemtype) $input1 = GUICtrlRead($gemtype) _GUICtrlStatusBar_SetText($status, "You've selected: " & $input1) but it returns as 1, which I'm guessing is from the -1 Edit: or no, I followed the $select, but it displays "Choose a gem to sell" not the actual gems. How can I define what gem is what? I thought about maybe splitting the string?