You are defining "da" as an object and never giving it a value so I don't know how this compiles and doesn't error when it runs.
Remove your declaration of da at the top and do it in your Load event.
Dim da = New SqlDataAdapter
Also remove the "tables" variable and do this instead
Dim view As New DataView(ds.Tables(0))