Databinding
A new
databinding attribute has been added to allow properties distinguish between
communicating changes only when focus leaves the control or during all property
change notifications.
The new
attribute known as ImmediateBind is to allow controls to differentiate
two different types of bindable properties. One type of bindable property needs
to notify every change to the database, for example with a checkbox control
where every change needs to be sent through to the underlying database even
though the control has not lost the focus. However controls such as a listbox
only wish to have the change of a property notified to the database when the
control loses focus, as the user may have changed the highlighted selection
with the arrow keys before finding the desired setting, to have the change notification
sent to the database every time that the user hit the arrow key would be give
unacceptable performance. The new immediate bind property allows individual
bindable properties on a form to have this behavior specified, when this bit is
set all changes will be notified.
The new ImmediateBind
bit maps through to the new VARFLAG_FIMMEDIATEBIND (0x80) and the
FUNCFLAG_FIMMEDIATEBIND (0x80) bits in the VARFLAGS and FUNCFLAGS enumerations
for the ITypeInfo interface allowing for the properties attributes to be
inspected.