I am trying to write a very simple macro in VB for Microsoft Word, but I do not have the necessary knowledge.
I just need to do two things:
- Insert image from file
- Move it to the upper right corner and resize it.
I can complete the first task by recording a new macro, but I cannot choose to move the image during recording, so I need a VB code for this.
I already have this, so how do I move / resize the image?
Selection.InlineShapes.AddPicture FileName:= _ "C:\Users\***\Pictures\**.jpg" _ , LinkToFile:=False, SaveWithDocument:=True
source share