E come faccio a popolare una ListView con un DataSet ???
e poi come prende la sorgente Dati la ListView ???codice:oConn.Open() Dim oDS As New DataSet() Dim oDA As New SqlDataAdapter() oDA.SelectCommand = New SqlCommand() oDA.SelectCommand.Connection = oConn oDA.SelectCommand.CommandText = "SELECT * FROM Customers" oDA.SelectCommand.CommandType = CommandType.Text oDA.SelectCommand.ExecuteNonQuery() oDA.Fill(oDS, "Customers") oConn.Close() oDA = Nothing oConn = Nothing