K
Kevin Carter
hi
i have a workbook with two worksheets
worksheet 1 (main) is the input screen
worksheet 2 (images) contains a number of images(giffs)
each image is assigned a macro that once clicked the image is copied and
pasted onto the main worksheet at a given cell location
ActiveSheet.Shapes("Picture 4").Select
Selection.Copy
ThisWorkbook.Worksheets("MAIN").Select
Range("d9").Select
ActiveSheet.PasteSpecial Format:="Picture (GIF)", Link:=False, _
DisplayAsIcon:=False
Application.CommandBars("Picture").Visible = False
the picture number is different for each picture
what i want to do is when a second image is selected to be pasted onto main
worksheet delete the image that is already there
is this possible?
thanks
kevin
i have a workbook with two worksheets
worksheet 1 (main) is the input screen
worksheet 2 (images) contains a number of images(giffs)
each image is assigned a macro that once clicked the image is copied and
pasted onto the main worksheet at a given cell location
ActiveSheet.Shapes("Picture 4").Select
Selection.Copy
ThisWorkbook.Worksheets("MAIN").Select
Range("d9").Select
ActiveSheet.PasteSpecial Format:="Picture (GIF)", Link:=False, _
DisplayAsIcon:=False
Application.CommandBars("Picture").Visible = False
the picture number is different for each picture
what i want to do is when a second image is selected to be pasted onto main
worksheet delete the image that is already there
is this possible?
thanks
kevin