The only way I know is by programming the entry and exit events. What
version of Access do u have?
Private Sub Text0_Enter()
Me.Label1.FontBold = True
End Sub
Private Sub Text0_Exit(Cancel As Integer)
Me.Label1.FontBold = False
End Sub
Damon
>I have a form where when you tab through the text boxes on the form the
>Label
[quoted text clipped - 9 lines]
>
> Kevin D
Kevin D. - 04 May 2007 02:39 GMT
Damon,
I'm using 2003. Sometimes the forms get a little funky. Like some labels
get darker as I scroll through records to the point they become bold face,
while others on the same form do not. The only way I've been able to solve
that problem is to make the label backround "Normal" instead of "transparent".
Kevin
> The only way I know is by programming the entry and exit events. What
> version of Access do u have?
[quoted text clipped - 22 lines]
> >
> > Kevin D