L
LMB
Hi Guys,
I have the event procedure below to run on a control on my form but I don't
think I want to use it after all but don't want to delete it, how do I
change it so it won't run?
Thanks, Linda
Private Sub RdBlksID_AfterUpdate()
If Me.RdBlksID = 8 Then
Me.Other_Desc.Visible = True
Me.Other_Desc_Label.Visible = True
Else
Me.Other_Desc.Visible = False
Me.Other_Desc_Label.Visible = False
End If
End Sub
I have the event procedure below to run on a control on my form but I don't
think I want to use it after all but don't want to delete it, how do I
change it so it won't run?
Thanks, Linda
Private Sub RdBlksID_AfterUpdate()
If Me.RdBlksID = 8 Then
Me.Other_Desc.Visible = True
Me.Other_Desc_Label.Visible = True
Else
Me.Other_Desc.Visible = False
Me.Other_Desc_Label.Visible = False
End If
End Sub