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

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

Android soft keyboard reverts to default keyboard on orientation change -

jquery - javascript onscroll fade same class but with different div -