B
Bateman28
Hi
I am trying to figure out how to change certain fields when a tickbox is
ticked to the value of True. My Tickbox is named WDAccessed.
I have tried the following;
Private Sub WDAccessed_Click()
If Me![WDAccessed] = True Then
Me![FullName.BackColour] = 255 Colour Red
Me![WorkDueDate.BackColour] = 255 Colour Red
Else
Me![FullName.BackColour] = -2147483643 Normal BackColour
Me![WorkDueDate.BackColour] = 2147483643 Normal BaclColour
End If
End Sub
Any help would be great.....Cheers
I am trying to figure out how to change certain fields when a tickbox is
ticked to the value of True. My Tickbox is named WDAccessed.
I have tried the following;
Private Sub WDAccessed_Click()
If Me![WDAccessed] = True Then
Me![FullName.BackColour] = 255 Colour Red
Me![WorkDueDate.BackColour] = 255 Colour Red
Else
Me![FullName.BackColour] = -2147483643 Normal BackColour
Me![WorkDueDate.BackColour] = 2147483643 Normal BaclColour
End If
End Sub
Any help would be great.....Cheers