VBA text problem
-
Hi Working in MS Access VBA want to enter a number in textbox and return some text in another textbox. For example when enter 1 want to return in another textbox Boston. How to make this possible? Regards
KORCARI wrote:
Working in MS Access VBA want to enter a number in textbox and return some text in another textbox.
For example when enter 1 want to return in another textbox Boston.
How to make this possible?Create a form with the two text boxes. Each text box has events associated with it. In the AfterUpdate event of the first text box, check for the value entered and accordingly fill value(s) in the second text box. HTH :)
-
Hi Working in MS Access VBA want to enter a number in textbox and return some text in another textbox. For example when enter 1 want to return in another textbox Boston. How to make this possible? Regards