tags:

views:

84

answers:

1

Is it possible to execute code that is apart of a Form in MS Access from an outside module? What would be the method to call in VBA?

+2  A: 

It's definitely possible. It would have to be a public sub or function and the form would have to be loaded at the time.

Forms("FormName").SubOrFunction
DJ
Simple and to the point. Thanks.
Curtis Inderwiesche
The sub/function has to be public for this to work.
David-W-Fenton
Already stated...
DJ