How to run a Macro in VBA ?

M

Martin

I create a Macro called aabbcc ,
I want to activate this macro in my VBA sentence, How should the VBA
sentence like ??

Thanks!
 
D

Douglas J Steele

DoCmd.RunMacro "aabbcc"

Why not replace the macro with VBA code, though? It's almost always better
to use VBA.
 
Top