I've got fuzzy labels!

J

Joseph Ellis

Hello all,

I have a form which contains a couple of unbound labels (that is,
labels which are not "attached" to any control). When I open the
form, everything looks normal. But as I click through successive
records in the form, the unbound labels get progressively darker and
"fuzzier" in appearance.

This does not happen to bound labels, and occurs regardless of font
face, size, or location on the screen.

I did a search through Google groups, but found only one reference to
this problem with no posted solution.

What can I do to stop this from happening?

Thanks,
Joseph
 
T

TC

Erk!

I'd start by suppressing the whole code module of your form, to be sure that
nothing in there is causing it.

#IF FALSE THEN ' <- new first line.
' rest of code module
#ENDIF ' <- new last line.

Then try again & see what happens.

HTH,
TC
 
J

Joseph Ellis

Hello all,

I have a form which contains a couple of unbound labels (that is,
labels which are not "attached" to any control). When I open the
form, everything looks normal. But as I click through successive
records in the form, the unbound labels get progressively darker and
"fuzzier" in appearance.

This does not happen to bound labels, and occurs regardless of font
face, size, or location on the screen.

I did a search through Google groups, but found only one reference to
this problem with no posted solution.

What can I do to stop this from happening?

Thanks,
Joseph

Actually, I can solve the problem by replacing the labels with unbound
text boxes with a Control Source of:

="Displayed Text"

But I'd still be interested in learning more about this issue and what
causes it.

Joseph
 
D

Dirk Goldgar

Joseph Ellis said:
Hello all,

I have a form which contains a couple of unbound labels (that is,
labels which are not "attached" to any control). When I open the
form, everything looks normal. But as I click through successive
records in the form, the unbound labels get progressively darker and
"fuzzier" in appearance.

This does not happen to bound labels, and occurs regardless of font
face, size, or location on the screen.

I did a search through Google groups, but found only one reference to
this problem with no posted solution.

What can I do to stop this from happening?

Thanks,
Joseph

I've never heard of a problem like this, but it seems to me there are
two paths for investigation: either it's something you're doing, or
not. Do you have any code in the form, especially any code that refers
to those labels? Do you run any macros that affect those labels? Does
it happen only on this one form? If you create a new form with detached
labels, does the same problem manifest itsef?

If it's not anything you're doing, then it could be a problem with your
video driver. You could try different video settings to see if that
makes a difference, or you could check for an updated driver.
 

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

Top