Form flicker during calcs

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I have a few forms with various bound and / or calculated controls.

With some buttons / events, I need to process all records. I generally use

dim rs as dao.recordset
set rs=me.recordsetclone

do
rs.edit

....do crunching

rs.update
rs.movenext
loop

me.recalc
etc...

All code is working fine, except I seem to get form screen flicker. the more
detailed the manipulations, the more flicker.

Is there a more professional approach to editing data on forms? Should I set
form.visible=false for example?

Thanks in advance

swas
 
See whether setting

Application.Echo False

at the beginning (and

Application.Echo True

at the end) helps.

You might also have to issue a screen Repaint at the end.
 
Doug,

It works perfectly.


Thanks

swas


Douglas J. Steele said:
See whether setting

Application.Echo False

at the beginning (and

Application.Echo True

at the end) helps.

You might also have to issue a screen Repaint at the end.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Help editing record set 4
Recordset Help 10
Selecting particular records in a form 3
Loop through and Update (INSERT INTO) 6
recordset loop not looping 1
Access Got problem with access.... need help !!!!! 0
3134 error 2
forms Coding 6

Back
Top