C
CycleMark
A single chart-sheet can contain multiple independent
charts. However, the VB "Project Explorer" hierarchy
shows only the *first* chart placed on the chart-sheet.
There doesn't appear to be a way to access the second,
third, nth chart on the chart-sheet from within the VB
editor. Does anyone know how to do this?
Subject: Re: precise positioning of objects
From: "Jon Peltier" <[email protected]> Sent:
10/22/2003 11:53:33 AM
You need to use VBA:
' Move and resize selected object
selection.left=5
selection.top=100
selection.height=55
selection.width=40
- Jon
charts. However, the VB "Project Explorer" hierarchy
shows only the *first* chart placed on the chart-sheet.
There doesn't appear to be a way to access the second,
third, nth chart on the chart-sheet from within the VB
editor. Does anyone know how to do this?
Subject: Re: precise positioning of objects
From: "Jon Peltier" <[email protected]> Sent:
10/22/2003 11:53:33 AM
You need to use VBA:
' Move and resize selected object
selection.left=5
selection.top=100
selection.height=55
selection.width=40
- Jon