I'm doing this:
SendMessage(hWnd, LVM_GETITEM, Nothing, @), which @ should be a pointer to a structure called LVITEM, which I've made, but how do I make a pointer to a structure in Visual Basic .NET 2008??

IE:
Code:
Dim liItem As New LVITEM()

SendMessage(hWnd, LVM_GETITEM, Nothing, Pointer(liItem))
How do I do this?

Cheers
Icyculyr