Ok i fixed my problem now but what's happening is that the data is always being overwrited. I mean there is only one row which is constantly being overwrited
Thanks in advance =]Code:Public Class Form1 Private Sub UpdateTable(ByVal Details As String()) Dim DataSet As New LoginServerDataSet Dim Adapter As New LoginServerDataSetTableAdapters.DetailsTableAdapter Dim Manager As New LoginServerDataSetTableAdapters.TableAdapterManager Manager.DetailsTableAdapter = Adapter DataSet.Details.Rows.Add(Details) Manager.UpdateAll(DataSet) End Sub Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load UpdateTable({"1", "Name3", "Pass"}) End Sub End Class




Reply With Quote