Greyowlsl
Mlak Mlak
- Local time
- Today, 20:19
- Joined
- Oct 4, 2006
- Messages
- 204
Hi,
Ive searched the forums and access help but i cant find why my code dosent work. The error i get is "you entered and expression that has no value".
and this also doesn't work
I just want it that when i check the check box a '1' appears in a text box straight away.
I use access 97
Thanks,
Leon
Ive searched the forums and access help but i cant find why my code dosent work. The error i get is "you entered and expression that has no value".
Code:
Private Sub chk_breaker_GotFocus()
If Me.chk_breaker = True Then
Me.UPGRADE_CIRCUIT = "1"
Else: Me.UPGRADE_CIRCUIT = "0"
End If
End Sub
Code:
Me.chk_breaker.value = -1
I just want it that when i check the check box a '1' appears in a text box straight away.
I use access 97
Thanks,
Leon