
April 19th, 2008, 05:34 PM
|
|
Registered User
|
|
Join Date: Apr 2008
Posts: 1
Time spent in forums: 12 m 3 sec
Reputation Power: 0
|
|
|
Access Checkboxes() backColor
Hi @ll!
I´ve a form where you can click the checkbox "kostenpflichtig" (means: liable to pay costs). When you mark it, the field (Bezeichnungsfeld148) where the text "kostenpflichtig" appears, should be change from bgcolor "white" into e.g. "red". Alternatively if checkbox is not marked it should be stay white. What I have made wrong?
With tis code nothing happens.. :-(
Private Sub kostenpflichtig_AfterUpdate()
If Me![kostenpflichtig] = True Then
Me![Bezeichnungsfeld148].BackColor = RGB(201, 105, 50)
End If
End Sub
Thx4Uhelp!
|