DataGrid Real Time Change

G

Guest

How can I make a change in the bound textbox automaticaly update the
assciated Datagrid when the user leaves the textbox?

I can accomplish this if I save the textbox change to database immediately
but, I'd rather save the change to the dataset until the user clicks on the
O'K button on the form

TB_Leave(..) {
dataSet.Tables[tableName].Rows[rowIndexNumber][columnName]= strgCellFill;
 
G

Guest

TB_Leave(..) {
dataSet.Tables[tableName].Rows[rowIndexNumber][columnName]= textBoxlFill;

// automatically updates datagrid but don't want to do this here
//savedSetDb();

// want to say something like this
DGrid.Update(dSet)
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top