No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
Hericles his answer is good, it looks if you hardcoded the connection string. If the link contains a map you can replace it with this.: System.Windows.Forms.Application.StartupPath + "\filename" Then the program looks always into its own path and it dos'nt matter on which computer you place it.
Hello everyone, I've a little problem with updating my Access DB. I use this code to update my db in vb.net. Private Sub Button9_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button9.Click Try oledbCmdBuilder = New OleDbCommandBuilder(adapter) changes = ds.GetChanges() If changes IsNot Nothing Then adapter.Update(ds.Tables(0)) End If ds.AcceptChanges() …
The End.
Pascal_1