Un-saved value in control

L

Les Desser

It seems that until one exits from a control, any input is not 'visible'
from within code.

For example, after entering some value and before exiting, one
double-clicks on the field, then the value, as seen by the double-click
event is null (or the value prior to the new entry).

Is there any was this new value can be access at this point?

Thanks.
 
R

Rick Brandt

Les Desser said:
It seems that until one exits from a control, any input is not 'visible'
from within code.

For example, after entering some value and before exiting, one
double-clicks on the field, then the value, as seen by the double-click
event is null (or the value prior to the new entry).

Is there any was this new value can be access at this point?

For the changed, but not yet updated value use the Text property of the control.
 
Top