Dec 10, 2007 #1 Iainkerr01 Technical User Joined Aug 8, 2007 Messages 12 Location GB Can anyone tell me how I can call an Action ("Private Sub Command99_Click()") from the end of a seperarte Action?
Can anyone tell me how I can call an Action ("Private Sub Command99_Click()") from the end of a seperarte Action?
Dec 10, 2007 #2 dhookom Programmer Joined Jun 24, 2003 Messages 22,561 Location US end of a seperarte Action"? You can call any code from anywhere in the same module. Try: Code: '... your existing code ... Command99_Click '... your existing code ... BTW: consider providing descriptive name of you controls. Command99 doesn't provide a coder with any clue regarding its function. Duane MS Access MVP Now help me support United Cerebral Palsy Upvote 0 Downvote
end of a seperarte Action"? You can call any code from anywhere in the same module. Try: Code: '... your existing code ... Command99_Click '... your existing code ... BTW: consider providing descriptive name of you controls. Command99 doesn't provide a coder with any clue regarding its function. Duane MS Access MVP Now help me support United Cerebral Palsy