G
grep
How do you determine your current field?
I'm writing some code that will, at some point, disable the current
control. I'd like to check the current control and, if it is the one I'm
disabling, change focus to a different control.
So it would look something like this:
If <current_control> = Command68 then
docmd.gotocontrol Command69
Command68.Enable = False
end if
How do I do that?
grep
I'm writing some code that will, at some point, disable the current
control. I'd like to check the current control and, if it is the one I'm
disabling, change focus to a different control.
So it would look something like this:
If <current_control> = Command68 then
docmd.gotocontrol Command69
Command68.Enable = False
end if
How do I do that?
grep