IT码农库

您当前所在位置:首页 > 脚本专栏 > 其它脚本

其它脚本

VBA UsedObjects 集合用法

[db:来源] 2009-07-15其它脚本1376
可用 Application 对象的 UsedObjects 属性返回一个 UsedObjects 对象。
返回一个 UsedObjects 集合后,便可用 Count 属性来确定 Microsoft Excel 应用程序中所用对象的个数。
在本示例中,Microsoft Excel 确定已分配的对象的个数,并通知用户。本示例假定在应用程序中执行重新计算,并且在完成前中断重新计算。
复制代码 代码如下:

Sub CountUsedObjects()
MsgBox "The number of used objects in this application is: " & _
Application.UsedObjects.Count
End Sub
大图广告(830*140)