does anyone know an alternative to VBPCAP that I can use to make a packet sniffer if I can't get this to work, would rawsockets work at all?
here is the script though:
Dim numadapters As Long
Dim i As Integer
Dim d As AdINFO
numadapters = VBPcapInit ' Start VBPCAP engine
For i = 0 To numadapters - 1
vpGetAdapterInfo i, d 'Uncomment this and comment the line above
cbadapter.AddItem d.Description
Next
cbadapter.ListIndex = 0
thanks