Article ID: 122712
Article Last Modified on 11/6/2000
Function DelModule()
DoCmd.DeleteObject A_MODULE, "Delete Test"
End Function
Note that DeleteObject will enable you to delete any module, including the
module which contains the DelModule() function.
Function DelModule()
DoCmd DeleteObject A_MODULE, "Delete Test"
End Function
Function TestFunction()
MsgBox "Test Function"
End Function
? DelModule()Note that you receive the error message mentioned earlier in this article.
Keywords: kberrmsg kbfix kbprogramming kbprb KB122712