这是来自xls文件的一些代码。在 Excel 2010 中它不起作用。Pictures
我在对象资源管理 器中找不到集合
Private Sub Worksheet_Calculate()
Dim oPic As Picture
'make them invisible
For Each oPic In Me.Pictures
If Left(oPic.Name, 2) = "jq" Then
oPic.Visible = False
End If
Next
end sub
等效的 2010 代码是什么?