MS Access : Can we edit the Macro in VBA? and how? -


the scenario: have form called forma, , form has button called buttona. when click buttona runs macro open form, formb.

the question: can edit macro in vba? making open formc instead.

you can export code macro using;

application.saveastext acmacro, <macroname>, <filename> 

and can import code after editing using;

application.loadfromtext acmacro, <macroname>, <filename> 

the text content of macro isn't vba edit successfully.


Comments