saharalayer
New member
- Local time
- Today, 18:57
- Joined
- Dec 13, 2024
- Messages
- 4
Hello everyone
I have a question about showing a data entry field.
Code: I made it and it works
In the menu there are two options (Yes / No)
I want to show the input field when the person chooses (No)
Thanks in advance
I have a question about showing a data entry field.
Code: I made it and it works
Code:
Private Sub Combo6_AfterUpdate()
If Me.Combo6.Value = True Then
Me.Text4.Visible = True
Else
Me.Text4.Visible = False
End If
End Sub
In the menu there are two options (Yes / No)
I want to show the input field when the person chooses (No)
Thanks in advance