I've been using the following code to add bitmap images to my listview:
$imgloc = $images_directory & $Browse_Array[$x][8] & ".bmp"
If FileExists($imgloc) Then
_GUIImageList_AddBitmap($hImage, $imgloc)
Else
_GUIImageList_AddBitmap($hImage, $images_directory & "Unknown.bmp")
EndIf
However, I have over 500 images and would like to very much remove that folder and include them as resources.
I've attempted several methods of adding the images. In some, the listv