BindingNavigator c #

2

Good afternoon!

I'm using C # bindingNavigator to register data to the database, but I do not like how the process is done with the buttons up there and have to click that yellow button to add a new record.

Clicking on the save button visual studio presents the following code:

        this.Validate();
        this.tIPOPAGAMENTOBindingSource.EndEdit();
        this.tableAdapterManager.UpdateAll(this.fINANCEIRODataSet);

It includes my button but the data is only saved in the database when the button addnew (yellow print) and clicked, I wonder if anyone knows what this button does that enables the dataSet for editing to be saved in the bank, I do not want to have to click on it every time I add a new record, can anyone help me?

    
asked by anonymous 28.01.2016 / 23:36

0 answers