I am new to VB.NET working with VS2003.
I am trying to work with a database using a multitier approach. I have all my form code in my presentation tier and the actual code for database access in the data tier.
I can access my database and set data into the dataset I have created fine. I can navigate through the dataset using the bindingmanagerbase just fine. But when I try to use the AddNew to add a new record into the dataset, it adds a new record, but doesn't clear my textboxes so I can add in new info. I'm using the bindingmanagerbase.endcurrentedit and then the bindingmanagerbase.addnew.
When I put everything together by combining the presentation and data tiers into one, there are no problems, so I know there's a problem with the connection between the two tiers.
Does anybody have any previous experience with this?
I am trying to work with a database using a multitier approach. I have all my form code in my presentation tier and the actual code for database access in the data tier.
I can access my database and set data into the dataset I have created fine. I can navigate through the dataset using the bindingmanagerbase just fine. But when I try to use the AddNew to add a new record into the dataset, it adds a new record, but doesn't clear my textboxes so I can add in new info. I'm using the bindingmanagerbase.endcurrentedit and then the bindingmanagerbase.addnew.
When I put everything together by combining the presentation and data tiers into one, there are no problems, so I know there's a problem with the connection between the two tiers.
Does anybody have any previous experience with this?