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

Popular posts from this blog

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -

javascript - Using jquery append to add option values into a select element not working -

javascript - Restarting Supervisor and effect on FlaskSocketIO -