PPT의 shape 이름 지정하기
아래의 코드를.. ppt내에서 macro를 추가하고.. shape을 선택하고.. 추가된 macro을 실행하면.. shape 이름을 지정할 수 있음.Sub NameShape() 'used to name shapes 'select the shape by clicking on it then go to macros and and then run this code !!!! 'you can then use that name in VBA to reference that object. lot easier than trying to guess at "rectangle 2" or what index a object is. Dim Name$ On Error GoTo AbortNameShape ..