Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion GroupsFormsForms ProgrammingQueriesModules / DAO / VBAReports / PrintingMacrosDatabase DesignSecurityConversionImporting / LinkingSQL Server / ADPMultiuser / NetworkingReplicationSetup / ConfigurationDeveloper ToolkitsActiveX ControlsNew UsersGeneral 1General 2
Access DirectoryToolsTutorialsUser Groups
Related Topics
SQL ServerOther DB ProductsMS OfficeMore Topics ...

MS Access Forum / Forms / April 2008

Tip: Looking for answers? Try searching our database.

Conditional Format

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
quinto - 14 Apr 2008 04:55 GMT
Would like a field in a form to turn yellow when another field in the same
record has focus but I have problems with the expression, is it possible?

Thanks

Quinto
banem2@gmail.com - 14 Apr 2008 08:29 GMT
> Would like a field in a form to turn yellow when another field in the same
> record has focus but I have problems with the expression, is it possible?
[quoted text clipped - 5 lines]
> --
> Message posted via AccessMonster.comhttp://www.accessmonster.com/Uwe/Forums.aspx/access-forms/200804/1

Hm, not sure that is possible? However, you can always use some code:

Private Sub SecondField_GotFocus()
   FirstField.BackColor = vbYellow
End Sub

Private Sub SecondField_LostFocus()
   FirstField.BackColor = vbWhite
End Sub

Regards,
Branislav Mihaljev, Microsoft Access MVP
quinto - 14 Apr 2008 13:00 GMT
It work but, not as intended. the whole column turns yellow, can I add
another line of code to apply to the same record only?

Thanks

Quinto

>> Would like a field in a form to turn yellow when another field in the same
>> record has focus but I have problems with the expression, is it possible?
[quoted text clipped - 14 lines]
>Regards,
>Branislav Mihaljev, Microsoft Access MVP
banem2@gmail.com - 15 Apr 2008 07:48 GMT
> It work but, not as intended. the whole column turns yellow, can I add
> another line of code to apply to the same record only?
[quoted text clipped - 25 lines]
> --
> Message posted via AccessMonster.comhttp://www.accessmonster.com/Uwe/Forums.aspx/access-forms/200804/1

It looks like (you didn't tells us so) that you have subform or form
as Continuous form or as Datasheet view where one field in Design View
contains many records in Form View. Using above code it will paint
whole column (it actually paints one field on form).

Regards,
Branislav Mihaljev, Microsoft Access MVP
quinto - 21 Apr 2008 02:13 GMT
OK I guess I should have expalain it better. Is there a way to highlight the
whole record in continous form when a condition is met in one field of the
record?

Thanks

Quinto

>> It work but, not as intended. the whole column turns yellow, can I add
>> another line of code to apply to the same record only?
[quoted text clipped - 9 lines]
>Regards,
>Branislav Mihaljev, Microsoft Access MVP
Linq Adams - 21 Apr 2008 04:30 GMT
That's a different question entirely, and depends on exactly what you mean by
"highlight the
whole record."

You can change the backcolor of each textbox in the record using Conditional
Formatting by

Holding down the <Shift> Key and selecting all of the textboxes
Going to Format - Conditional Formatting and entering

Expression Is [YourFieldName] = "Adams"

or

Expression Is [YourFieldName] > 100

or whatever, then choose your backcolor. The square brackets have to be
around the field name.

Another method, that's quite a bit more complicated,  involves using an
unbound textbox below your other textboxes.

Make it slightly taller than your other textboxes, and long enough to appear
a little to the left of and a little to the right of your row of textboxes.

With the unbound textbox selected, goto Format and select "Send to Back"

Set the Conditional Format for this unbound textbox as described above.

Now, position the textbox so that it's behind the row of other textboxes,
slightly above and below, and slightly to the left and to the right of the
row.  

Now, when the conditional for the given control is met, the unbound textbox,
which should now "envelop" your row of textboxes, will change color, "hi-
lighting" the record.  

The only problem with this method is that if the unbound control gets focus,
it will come to the front, covering your row of textboxes. To prevent this

For the unbound textbox, go to Properties - Other and set Tab Stop to No

Then place this bit of code

Private Sub YourUnboundTextbox_Click()
Me.Field1.SetFocus
End Sub

where Field1 is any control on your record you'd like the focus on. By doing
this, if the user should acidentally click on the "background" textbox, focus
will go to the Field1 and the textboxes won't be covered up.

Good luck!

Signature

There's ALWAYS more than one way to skin a cat!

Answers/posts based on Access 2000/2003

quinto - 23 Apr 2008 04:30 GMT
Thank you for your attempt to help me out. I do not want to the record to
change color when a condition is met but I want the record to change color
when the "ID" field has focus. This will make it easier for the user to focus
on the whole raw across the form.
Thanks Again

Quinto

>That's a different question entirely, and depends on exactly what you mean by
>"highlight the
[quoted text clipped - 49 lines]
>
>Good luck!
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.