I have a db made in access (access 2000 format) and i'm using vb.net and ado.net to work with it (jet 4.0). I have all the controls on the form binded to the dataset, including two checkboxes that are binded to two yes/no fields in the db. I am doing all this with code.

The problem is adding a new row. I did this:
Me.BindingContext(Dataset, "field").AddNew()

The number of rows get's bigger but i can't access the new row. I've played with the dataform wizard, and I get the same problem. I've found out that if you don't bind the checkboxes to the dataset it works fine. Is there a bug I haven't heard of? It can't be my fault. The wizard does everything on it's own. Any help would be apreciated.