windows 95b
vb v5.0
tree view activex control v6.0

i'm having a problem with this treeview color function..

http://xiner.virtualave.net/gamescope/images/ss8.jpg

it colors everything except the back color of where the text is..

here is the code:

With lstgames
Call SendMessage(.hwnd, TVM_SETBKCOLOR, 0, ByVal &HF1CBA8)
Call SendMessage(.hwnd, TVM_SETTEXTCOLOR, 0, ByVal &H800000)

lngStyle = GetWindowLong(.hwnd, GWL_STYLE)

If lngStyle And TVS_HASLINES Then
Call SetWindowLong(.hwnd, GWL_STYLE, lngStyle Xor TVS_HASLINES)
Call SetWindowLong(.hwnd, GWL_STYLE, lngStyle)
End If
End With