Adding images and text to the old Excel game

I wanted to update an old VBA Excel application with new images. The app can be found at https://sourceforge.net/projects/shag/ .

I figured out how to update images: by carefully selecting each of the 64 images and choosing "change image" on the playlist. But when I change the name in the data sheet and then click on that name in the match sheet, I get the error: "no item with the specified name was found".

Any idea how to quickly and easily change all the images and names in the game and have a full game at the end?

Thank,

Sachin

+3


source to share


1 answer


the shapes on the game worksheet have names that should match the new names you are using

Example: worksheets("game").shapes(66).name

Catherine Zeta Jones



The first person is the figure (3), the last one is the figures (66): also remember that you will need to change the name according to the corresponding image

0


source