store SHAPE-Object on disk

H

Heiko Schmidtke

Hello,

I have an Excel sheet with one or more shape objects (pictures).
I need to programm a little VBA-routine to extract these pictures form the
sheet and store them on disk.

I already know how to extract the SHAPES:

Dim varPicture As Shape
For Each varPicture In ActiveSheet.Shapes
varPicture.Select
Next varPicture

I even know how to store them in the clipboard-device:
varPicture.CopyPicture

But how can I store them on disk. What doesn't work (but explains my problem
well): varPicture.savetofile "c:\myPic.bmp"

Who knows better?

Heiko
 
T

Tom Ogilvy

I haven't tried it, but save a copy of your worksheet as html and I believe
the shapes will be saved as separate GIF files.
 
H

Heiko Schmidtke

Well, think that works.
At least I was able to transfert the pics on disk, I could open them and I
stored them on SQL-Server:

Dim rst As New ADODB.Recordset
Dim con As New ADODB.Connection
Dim stm As New ADODB.Stream

ActiveWorkbook.PublishObjects.Add("Page.htm", "Sheet", "", xlHtmlStatic,
"Testname", "Testname").Publish (True) 'Store as HTML files + jpg-pics

Set con = CurrentProject.Connection
stm.Type = adTypeBinary
stm.Open
stm.LoadFromFile Pfad + "HTMLpage_image003.jpg"

rst.Open "tbl_Pr_Ld", con, adOpenDynamic, adLockOptimistic
rst.AddNew
rst![Pr_Ld_Pic] = stm.Read
rst.Update

That works fine. But now I can no longer watch the pics in my Access-form.
Do they have a wrong format. When transferred manually by Clipboard one can
see the pics. Access simply doesn't show the pics!

Regards,
Heiko
 

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

Top