Calculating in text box speed

  • Thread starter Thread starter Marco Simone
  • Start date Start date
M

Marco Simone

Hi,

I have form with several text boxes (bound and unbound).
Unbounded text boxes calculates values like:
txtBox5=txtBox4 + txtBox3 + txtBox2 + txtBox1

There is little delay when data in txtBox5 shows (after half of second or
second). Is it possible to speed up showing result in txtBox5? In excel is
temporary, although I am happy with this result anyway.
Maybe I am asking too much.

Thanks for help and expertise, Marco
 
You might try creating the calculation in a query in addition to all the
fields from the table you are using with the form. Rather than attaching the
table to the form you attach the query. Thus placing the calculated field on
the form. This may speed up the display of the value.
 
Back
Top