How to save a ole object from the clipboard? (Do Ctlr+V)

  • Thread starter Thread starter peterfarge
  • Start date Start date
P

peterfarge

Hello Forum,

my workbook uses an external dll. I want to include within my workbook.
I have added it with Insert->Object->FromFile on a worksheet. My
problem is how to save it to harddisk.
If a make Ctrl+V the dll would be saved. But how can I do this per Api?

This is the code that creates the ole Object:
Dim oOle As OLEObjects
Dim o As OLEObject

Set oOle = ThisWorkbook.Worksheets(1).OLEObjects
Set o = oOle.Add(, "H:\Pers\SharpDevelop\Hello\Hello.dll", False,
False)
o.Verb xlOpen ' Opens the old Win3.11 Editor
o.Copy ' Copies it to the clipboard, now I can place the dll with
Ctrl+V to the desktop.



Best wishes

Peter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top