Help with Open Sound Control

I’m trying to get information from a server using the Open Sound Control protocol (http://opensoundcontrol.org/).

The application connects to the server OK but I have problems getting any useful information. All I get is “#bundle

This is the code in the DataAvailable of an UDPSocket:

dim dg as Datagram
  do until me.PacketsAvailable < 1
    dg = me.Read
    TextArea1.Text = TextArea1.Text + EndOfLine + dg.data
      loop

From the information on the OSC site I can understand that the information is structured in bundles but I don’t know how to read these bundles

Does anybody have some experience with OSC

Best regards