Code:
'question:
'I load my listview and I use 2 different icons
'one for odd numbers, one for even. No Problem
'
I can then view my listview by LargeIcon,SmallIcon,List,Report
No Problem
However, when viewing largeicon I only get one icon
All the rest show me the 2 different icons.

There obviously is a reason...someone what to impart
that bit of knowledge on me.

'load an array with information
Dim myArr(99)
Dim i As Integer
For i = 1 To 99
    myArr(i) = CInt(Rnd * 99)
Next i

'then load the array into a listview

Dim x As Variant  'differ between odd and even rows

For i = 1 To 99
    'used different images every second line
    'image one for odd, image2 for even
    x = i / 2
    If x Like "*.*" Then
    Set sItem = Listview1.ListItems.Add(, , myArr(i), 1, 1)
    Else
    Set sItem = Listview1.ListItems.Add(, , myArr(i), 1, 2)
    End If
    'add subitems
    sItem.SubItems(1) = "905-444-9455"
    sItem.SubItems(2) = "who knows"
Next i