$aLabelSender[$i] = GUICtrlCreateListViewItem("", $LVStreams)
GUICtrlSetData($aLabelSender[$i], $message & "|" & $statestream & "|" & $remaining & "%")
GUICtrlSetFont($aLabelSender[$i], 9, 800)
If $aStreaming[$i] = 1 Then
If $aColor[$i] = "0x00cc33" Then
;
Else
GUICtrlSetColor($aLabelSender[$i], 0x00cc33)
GUICtrlSetImage($aLabelSender[$i], "shell32.dll", 148)
$aColor[$i] = "0x00cc33"
EndIf
Else
If $aColor[$i] = "0x63CC00" Then
;
Else
GUICtrlSetColor($aLabelSender[$i], 0x63CC00)
$aColor[$i] = "0x63CC00"
; HERE I WANT TO REMOVE THE ICON
EndIf
EndIf
Here's a code snippet of what I do and what I want to achieve.