S
Sher
Listed below is an AfterUpdate that right now if you select LV 3 then
Permanent automatically appears. The problem that the user is having if
someone realizes they made a mistake and change to LV 2 then the Permanent
stays instead of changing to a empty box. Is there something I can do to
change this?
Private Sub LV_AfterUpdate()
On Error GoTo Err_LV_AfterUpdate
'Evaluate the LV control value
If Me.LV = 3 Then
Me.ACCESS.Value = "Permanent"
Else
'Whatever you want if the value is not 3'
End If
Exit_LV_AfterUpdate:
Exit Sub
Err_LV_AfterUpdate:
MsgBox Err.Description
Resume Exit_LV_AfterUpdate
End Sub
Permanent automatically appears. The problem that the user is having if
someone realizes they made a mistake and change to LV 2 then the Permanent
stays instead of changing to a empty box. Is there something I can do to
change this?
Private Sub LV_AfterUpdate()
On Error GoTo Err_LV_AfterUpdate
'Evaluate the LV control value
If Me.LV = 3 Then
Me.ACCESS.Value = "Permanent"
Else
'Whatever you want if the value is not 3'
End If
Exit_LV_AfterUpdate:
Exit Sub
Err_LV_AfterUpdate:
MsgBox Err.Description
Resume Exit_LV_AfterUpdate
End Sub