View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
[email protected] tpm@third.com is offline
external usenet poster
 
Posts: 3
Default problem with shapes.nodes collection in excel 2007

Hi,

Has anyone come across the following problem? The code below works fine
with Excel 2003, but in 2007 nodes.count always returns zero. Any hints
appreciated!

Many thanks,
Tim

Dim o As Shape
For Each o In ActiveSheet.Shapes
If o.Type = msoLine Then
If o.Nodes.Count = 2 Then
..etc