Hide text on focus in continuous form

Kayleigh

Member
Local time
Today, 18:11
Joined
Sep 24, 2020
Messages
709
Hi
I have a continuous form with alternate row colours (white and grey).
I am looking to hide the text in one column when it has focus - usually I would change the text colour to white using conditional formatting. However it would not be transparent in the grey rows.
Any ideas of how this could work?
 
Just an idea:
Don't hide the text but put the focus into an unbound textbox that is exactly behind the one textbox.
 
Interesting. Will give it a try (y)
 
As an alternative, look at this article

Or just use this code on the Click event to hide all the text in each record of the field
Me.ControlName.Forecolor=Me.ControlName.Backcolor
However, you won't then be able to edit the field!
 
Last edited:

Users who are viewing this thread

Back
Top Bottom