-
I have made a simple function and placed it in a module called exportfunctions. When I call the function from a menu or an onclick event there is an error message that the function can not be found.
However, I placed the funtion in the utilities module of the Northwind database and was able to execute it from there.
This leads me to believe I am missing a step when I create the module itself and not the function.
Anything right now would be much appreciated.
Ferdelance
-
Tru declaring the function public
ie
PUBLIC FUNCTION myFunc()
...
...
...
END FUNCTION