name a picture

  • Thread starter Thread starter Darryl
  • Start date Start date
D

Darryl

Greetings,
I have a picture object in workbook A Sheet 1.
I can programatically copy it from Workbook A Sheet 1 to
Workbook B sheet 1. Is there a method that I can give it
a name, instead of excel naming it picture 107, etc ?

thanks,
D
 
Sheet1.Shapes("Picture 107").Name = "MyPicture"

If you post your code, there may be a more direct way of doing it.
 
Well, once excel pastes the shape into Workbook B, I don't know
(programatically) the name it gave it.
here is one of my macros

Sub reached25()
'
' reached25 Macro
' Macro recorded 3/9/2005 by System Administrator
'

'
Workbooks.Open Filename:= _
"K:\My Documents\carla\imagefile.xls"
ActiveSheet.Shapes("Rectangle 3").Select
Selection.Copy
ActiveWindow.Close
Range("C15").Select
ActiveSheet.Paste
ActiveSheet.Selected.Shapes.Name = "progress"
Selection.ShapeRange.IncrementLeft -67.75
Selection.ShapeRange.IncrementTop 34.5
Range("A1:C1").Select
End Sub

I need to know the name of the shape after the ActiveSheet.Paste, so I
can remove it in a later macro.

thanks,
D
 
If it's the last picture that's pasted in the worksheet:

dim myPictName as string
with activesheet
mypictname = .pictures(.pictures.count).name
end with
 
Hi -

You don't necessarily give the chart a name, but rather the shape that
the chart is embedded in.

I won't dupe all the code here: however, once you have copied it to the
clipboard as a picture you can give it a name as you paste it via the
following:

With Workbooks("YourWorkbookNameHere").Activate
With .Sheets("YourWorkSheetHere")
.Cells("YourCellsHere").Select
.Pictures.Paste.Select
Selection.ShapeRange.Parent.Name =
"YourChartNameHere"
End With
End With

Where (obviously) you replace the "YourWorkbookNameHere",
"YourWorkSheetHere" and "YourCellsHere" and "YourChartNameHere" with
your own references.

It took a while to figure out that you don't give the chart a name at
any point, but rather you assign a name to the (object) parent of the
picture, which is a shape. You can then access the shape at any given
point later on when it is given a sensible name.

John
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top