Save Embedded Files

  • Thread starter Thread starter Sandeep Warrier
  • Start date Start date
I tried to get this done, but unfortunately not

I can able to open objects and save it my document but you need to
save it in a specified location.

try this, i will try to find this answer.

Sub emdb()
Dim obj As Object
For Each obj In ActiveSheet.Shapes
obj.Select
Selection.Verb
Application.SendKeys "+^(s)", True
Application.SendKeys ("{TAB} + {TAB} + {ENTER}")
Application.SendKeys "^(W)", True

Next

End Sub
 
Back
Top