Hi, a textbox is bound to a variable lcVar. In some special case I need this variable to reflect textbox value all the time, e.g. after every meaningful keypress.
So I put following "refresh command" into textbox InteractiveChange method
Later willing to make it more generic I've tried
Substitution like
helps, but seems to be clumsy.
Is there an easy way?
Thank you Tom
So I put following "refresh command" into textbox InteractiveChange method
Code:
lcVar = this.value && this works
Code:
&this.ControlSource = this.value && this does not work giving "Unrecognized command verb" error
Code:
lcDummy = this.ControlSource
&lcDummy = this.value
Is there an easy way?
Thank you Tom