murray83
Games Collector
- Local time
- Today, 21:33
- Joined
- Mar 31, 2017
- Messages
- 843
here is my code so far which works in a fashion
the field "Status" is defaulted to Waiting so people can see how many tasks are waiting but in this situation it allows you to change the status without entreing a name
but if you delete the status it does work once in this example you type in kev
so i have two questions
1, im not going to be able to type in evrey name so is there a function i can put in place of "kev" which will work ie a string of characters
2, how do i make it work if possible even with a default value
see attached also
the field "Status" is defaulted to Waiting so people can see how many tasks are waiting but in this situation it allows you to change the status without entreing a name
but if you delete the status it does work once in this example you type in kev
so i have two questions
1, im not going to be able to type in evrey name so is there a function i can put in place of "kev" which will work ie a string of characters
2, how do i make it work if possible even with a default value
see attached also
Code:
' by default enable status
Me.Status.Enabled = False
' test the value entered by user in the category field and hide fields as required
Select Case Me.ActionedBy
Case "kev"
' if the user has entered a name then unlock status
Me.Status.Enabled = True
End Select