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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Continues Form problem

Status
Not open for further replies.

Zeroanarchy

Technical User
Jun 11, 2001
630
AU
Having issues with a continues form in that if I want to change the color of one of the fields as follows:

If [2] >= 1 Then
Me.[2].BackColor = RGB(255, 0, 0)
Else
Me.[2].BackColor = RGB(255, 255, 255)
End If
End Sub

What happens is that the first entry in [2] set the color for all the rest of the entries on the contiues form.

The form has a Form Header
Form Footer
Page Header
Page Footer
And Details, the details is continues..
Anyone got any answer for this one.
Thanks:)

 
Dear Zero:
Sounds like you might have your code in the wrong event--that is, you may have it in an event for the form itself rather than for a control on a record.
:cool: Gus Brunston
An old PICKer
padregus@home.com
 
zero,
Unfortunately, that is standard behaviour. Nothing aside from spaghetti-like api use will change that.
--Jim
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top