I have a continuous form that has the property that has some fields. When I click a button on the form a Requery is processed on the form which results in updated value of some textboxes (these are not enabled, i.e. read only).
What I'm trying to do is to get the value of one of the textboxes in the form after Requery. How do I do that? I've tried using the Current event to get the value after the requery (refresh) but i开发者_如何学Got's not working. Is there any other event that can do the work?
Just use the name of the field. For example, after the requery, use msgbox [FieldName]
.
Thanks for your contribution.. The problem was that the value of the field I was trying to get the value of comes from adding 2 values (a + b)
and so the solution was updating the field before saving its value to a different variable...
精彩评论