Macro vba not opening

I am trying to open the macro for copying the codes of the objects. But the macro simply does not open. Any solution for this?

If I try opening the macro from the desktop it doesn't open it neither.

Opening a macro from a specified location.

After clicking add and OK, the macro does not open.

Parents
  • Is it possible that the macro does not have any modules without arguments? The macros that appear in the Run Macro lists are modules that require no arguments. These often call other modules with arguments, passing values or objects as arguments to those other modules. but for a VBA Project to support running from the command line or the run macro dialog box, it must have at least one module that is declared with an empty parenthesis. ()


    Charles (Chuck) Rheault
    CADD Manager

    MDOT State Highway Administration

    • MicroStation user since IGDS, InRoads user since TDP.
    • AutoCAD, Land Desktop and Civil 3D, off and on since 1996
Reply
  • Is it possible that the macro does not have any modules without arguments? The macros that appear in the Run Macro lists are modules that require no arguments. These often call other modules with arguments, passing values or objects as arguments to those other modules. but for a VBA Project to support running from the command line or the run macro dialog box, it must have at least one module that is declared with an empty parenthesis. ()


    Charles (Chuck) Rheault
    CADD Manager

    MDOT State Highway Administration

    • MicroStation user since IGDS, InRoads user since TDP.
    • AutoCAD, Land Desktop and Civil 3D, off and on since 1996
Children