Hello,
I noticed that, when I call the SuspendBinding method on a
BindingContext of a form, and then manually change something in the
underlying data source, it forces a refresh of all bound properties,
even though binding has been suspended. All values read are
System.DBNull in this case. I can't believe this is the intended
behavior. Can anyone shed some light on this?
I am using Framework v1.1.
Thanks.
Lefty - 16 Feb 2006 18:00 GMT
I think if you check the msdn documentation on SuspendBinding() you'll
see that it doesn't prevent changes in the datasource from effecting
the bound controls. It is a one-way suspension which keeps changes in
the bound controls from updating the datasource.
Nik - 19 Feb 2006 16:29 GMT
I did check the documentation, and the description is not very clear.
However, it does not matter anymore, as I rewritten my application
logic so this doesn't affect me. Thanks for answering, though.
Nik