dmotah 0 Light Poster
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

        If (TextBox1.Text = " ") Then
            MessageBox.Show("Value cannot be null")

        End If
        daRates.Update(DsRates, "rates")

    End Sub

im using vb,net 2003 and access xp
i cannot save data and im using oledbconnection etc
all is fine
if i use the same code but instead of Update i put Fill, it displays the table...
can u tel me wats wrong y i cannot input data to the table?