B
bmac
I have a Form whereby I have set up a Frame (Frameq16) with 6 options in it.
Option # 5 = "Other". I have also created a TEXT box to have the user enter
their own description.
What I need to do is create some code that when "Option 5 Other", was chosen
and then removed, the descritpion TEXT box should also be set to null
This is my code
Private Sub Frameq16_AfterUpdate()
If Frameq16 = 5 Then
MsgBox "Please enter Other description"
Me!Frameq16.SetFocus
Me!q17.SetFocus
End If
End Sub
Option # 5 = "Other". I have also created a TEXT box to have the user enter
their own description.
What I need to do is create some code that when "Option 5 Other", was chosen
and then removed, the descritpion TEXT box should also be set to null
This is my code
Private Sub Frameq16_AfterUpdate()
If Frameq16 = 5 Then
MsgBox "Please enter Other description"
Me!Frameq16.SetFocus
Me!q17.SetFocus
End If
End Sub