The PullData and PushData methods

  • Thread starter Thread starter BVO
  • Start date Start date
B

BVO

I'd very much like to control my data binding by using
the PullData and PushData methods on the
BindingManagerBase object. The idea is to not update the
bound data source until I perform PullData.

Can anybody tell me whether this is possible and how to
do it?

BVO
 
BVO,

You will want to use the SuspendBinding and ResumeBinding methods to
suspend and resume data binding while you make changes. Then, you can call
PullData and PushData when you need to.

Hope this helps.

i
 
Back
Top