Me 关键字使用无效

Me关键字 (keyword) 可以出现在类模块中。 此错误的原因及解决方案如下:

  • “Me”关键字可在标准模块中出现。

    The Me keyword can't appear in a standard module because a standard module doesn't represent an object. If you copied the code in question from a class module, you have to replace the Me keyword with the specific object or form name to preserve the original reference.

  • The Me keyword appeared on the left side of a Set assignment, for example:

      Set Me = MyObject    ' Causes "Invalid use of Me keyword" message. 
    
    

    Remove the Set assignment.

    注意

    “Me”关键字可出现在“Let”分配的左侧,在此情况下,“Me”表示的对象的默认属性已设置。 例如:

      Let Me = MyObject   ' Valid assignment with explicit Let. 
      Me = MyObject       ' Valid assignment with implicit Let. 
    

有关其他信息,选择有问题的项并按 F1(在 Windows 中)或 HELP(在 Macintosh 上)。

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。