Question : Word VBA for rotating pictures

I have attempted to use the Marco to record the VBA for rorating the photos but ....  without success. Can any expert give the code for rotating the selected pictures.

Thanks in advance.

Answer : Word VBA for rotating pictures

something like
1:
2:
3:
4:
5:
Selection.InlineShapes.AddPicture FileName:= _
        "C:\MijnPicture.JPG" _
        , LinkToFile:=False, SaveWithDocument:=True
    Selection.MoveLeft Unit:=wdCharacter, Count:=1, Extend:=wdExtend  'select the photo
    Selection.ShapeRange.IncrementRotation 90#                  'rotate the photo
Random Solutions  
 
programming4us programming4us