Screen flicker's

  • Thread starter Thread starter Floyd Forbes
  • Start date Start date
F

Floyd Forbes

I have a form with a command button that's prints a report base on the
data on the form. The screen flickers when I print a report. Is there a
way to stop that.

Floyd
 
It should not flicker.

You might perhaps be setting the focus on some fields to grab data..and you
don't need to do that.

All controls can be ref by

contorlName

or contorlName.Value

Often, people mistakenly think that you have to set focus to a field..and
you don't.

Are you doing any kind of focus stuff in your code?
 
generally a flicker on the screen means you are updating the scree
continuously, do you have some code that is moving from one control t
another, or maybe you are requerying the form somehow???
 
Back
Top