I have a form. On the form is a pull down menu. When I select a certain value called "Ready" in the pull down menu, I would like to make the cursor go to another text box on the form named dpre. This will make the user fill out that section of the form which is required to fill out if 'ready' is selected.
I am very new at VB. I tried the code underneath but it does not work. I hope someone can help me with the code. I would really appreciate it. Thank you.
Private Sub Status_Click()
If Me.Status.Value = "DP Ready" Then
Forms!Invention_Disclosure_Input_Form!dpre.SetFocus
End If
End Sub
I am very new at VB. I tried the code underneath but it does not work. I hope someone can help me with the code. I would really appreciate it. Thank you.
Private Sub Status_Click()
If Me.Status.Value = "DP Ready" Then
Forms!Invention_Disclosure_Input_Form!dpre.SetFocus
End If
End Sub