Fråga: Har ett formulär innehållande en kombinationsruta samt ett antal textrutor vid olika val i kombinationsrutan skall bakgrundsfärgen i vissa textrutor ändras. Hur skall VBA-koden skrivas? <code>Formulär i access
Tack för hjälpen
janneSv: Formulär i access
Private Sub Form_Current()
Kombinationsruta0_AfterUpdate
End Sub
Private Sub Kombinationsruta0_AfterUpdate()
Dim Color As Long
Select Case Kombinationsruta0.Value
Case 1
Color = vbRed
Case 2
Color = vbBlue
Case Else
Color = vbWhite
End Select
Text2.BackColor = Color
Text4.BackColor = Color
End Sub
</code>