Hi,
I am trying to solve this: i would like to highlight the record/control having focus. I have seen several solutions but i wonder which one is the best for Office 365.
thank you
Andrew
"An alternative to highlighting only the control with the focus or using Conditional Formatting on every control is to add a text box with BackColor set to whatever BackColor you use on the other controls. Size this text box to cover the entire detail section and use Format - Send to Back to put it behind all the other controls. Then select all the other controls and set their BackStyle to Transparent.
Next, add an invisible text box (named txtCurrent) to the form header or footer section (or even the detail section) and set its value in the form's Current event:
Me.txtCurrent = Me.[your primary key field]
Now, you can use CF on the one big text box to highlight the entire row. Use the Expression Is option with an expression like:
[your primary key field] = [txtCurrent]
and selecting the back color of your choice."
It pretty much does the job...
Thank you for the help!
I have a continuous form that is quite wide. When the user is trying to read across, its somewhat hard to follow across. So, I would like to have the user select the record using the record selector