Hola foro
Estoy guardando varias tablas en un dataset, como puedo verificar si una
Tabla ya fue cargada al mismo DataSet.
Intente con lo sgte:
If Not (w_dsClient.Tables.Item(1) Is Nothing) Then
MessageBox.Show("client is not empty")
w_dsClient.Tables.Item(1).Clear()
Else
MessageBox.Show("client not empty")
End If
Dim w_daTable As New OleDbDataAdapter(strSQL, objGlobal.getConnectionString)
w_daTable.Fill(w_dsClient, "Client")
Pero la condicion no es correcta, como puedo lograr lo que propongo?
Muchas gracias.
Leer las respuestas