E
el_bennito
I have a continous form , on witch I need to apply 12 conditions.
Access only has standard 3 conditions build in to. so I can't use that
function .I now use the following code
Private Sub cboKlasVakID_AfterUpdate()
Select Case cboKlasVakID.Value
Case Is = 29
cboKlasVakID.BackColor = vbRed
Case Is = 30
cboKlasVakID.BackColor = vbRed
......
End Sub
problem is that whole form gets the same color.
any one got a solution?
benny
Access only has standard 3 conditions build in to. so I can't use that
function .I now use the following code
Private Sub cboKlasVakID_AfterUpdate()
Select Case cboKlasVakID.Value
Case Is = 29
cboKlasVakID.BackColor = vbRed
Case Is = 30
cboKlasVakID.BackColor = vbRed
......
End Sub
problem is that whole form gets the same color.
any one got a solution?
benny