Continuing the discussion from E10 VB error with clearList() and clearData():
I had problem in VB.net for adapter.clearData() and adapter.ClearData()
VB.net is case insensitive so clearData and ClearData are confused in vb.net.
to work around, my solution is adapter.GetData().Clear()
it worked.
regards,
Eddy