I have a textbox in a form that I created.
I want to add an expression in the textbox\'s Control Source property. I also want to bind the textbox to a field in the tabl
You could link the text box to the table control source and then set the value of the text box to the result of the expression in the AfterUpdate property on the two objects the contain the values you want to add.
For example
me.textbox.value= int1 + int2
This value should then be written to the table.