3mr
03-16-2002, 10:32 PM
hi guys,
thanks fot all the help before.
got another little problem.
i'm using the following code below on the event properties of a checkbox i'm using.
*******************************************
Private Sub first_AfterUpdate()
If Me![firstoption] = -1 Then
Me![other] = 0
Me.messageone.Enabled = False
End If
End Sub
Private Sub Osecond__AfterUpdate()
If Me![other] = -1 Then
Me![firstoption] = 0
Me.messageone.Enabled = True
End If
End Sub
*******************************************
'Me.messageone.Enabled = False'
I'm trying to control the 'enabled/disabled' feature of the corresponding record, but it seems to disable the entire messageone field rather than just the corresponding record. IS there any way to do this... get it to disable the field(s) you speicify rather than the entire field?
chers,
Jeev
[This message has been edited by 3mr (edited 03-16-2002).]
thanks fot all the help before.
got another little problem.
i'm using the following code below on the event properties of a checkbox i'm using.
*******************************************
Private Sub first_AfterUpdate()
If Me![firstoption] = -1 Then
Me![other] = 0
Me.messageone.Enabled = False
End If
End Sub
Private Sub Osecond__AfterUpdate()
If Me![other] = -1 Then
Me![firstoption] = 0
Me.messageone.Enabled = True
End If
End Sub
*******************************************
'Me.messageone.Enabled = False'
I'm trying to control the 'enabled/disabled' feature of the corresponding record, but it seems to disable the entire messageone field rather than just the corresponding record. IS there any way to do this... get it to disable the field(s) you speicify rather than the entire field?
chers,
Jeev
[This message has been edited by 3mr (edited 03-16-2002).]