Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Conditional Formatting a form

Status
Not open for further replies.

tarena

IS-IT--Management
Nov 28, 2005
70
US
I'm using Access 97 and need to format a field to be one color if the value is greater than the base number and another color if the value is less than the base number and just white if the value is = to the base number. I know how to format a report but doing it in a form is stumping me. Can anyone help? Silly question.

Thanks
 

Something like....
Code:
Select Case [i]YourField[/i]
    Case > Base:
        me.txtTextBoxName.Backcolor = vbYellow
    Case < Base:
        me.txtTextBoxName.Backcolor = vbBlue
    Case Other:
        me.txtTextBoxName.Backcolor = vbWhite
End Select

Randy
 
This is assuming, of course, that you're dealing with a form in Single View!The first code changes the color of the textbox immediately after a value is entered into it

Code:
Private Sub YourField_AfterUpdate()
Select Case YourField
    Case Is > Base:
        Me.YourField.BackColor = vbYellow
    Case Is < Base:
        Me.YourField.BackColor = vbBlue
    Case Other:
        Me.YourField.BackColor = vbWhite
End Select
End Sub

the second continues the formatting when you move from record to record.
Code:
Private Sub Form_Current()
Select Case YourField
    Case Is > Base:
        Me.YourField.BackColor = vbYellow
    Case Is < Base:
        Me.YourField.BackColor = vbBlue
    Case Other:
        Me.YourField.BackColor = vbWhite
End Select
End Sub

The Missinglinq

Richmond, Virginia

There's ALWAYS more than one way to skin a cat!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top