Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 60
Default Adding picture

How can I insert a picture into an excel sheet so that its center floats
over a given cell? My picture in an Access table. Excel should call Access,
retrieve the picture, and insert it.

Can anybody post an example?

Thanks


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 298
Default Adding picture

I don't have the right version of access to test this, but should be close.
Need to add a reference to ADO in the Excel VB project.

Tim



Sub Access_Data()

Dim picPath As String
Dim oStream As New ADODB.Stream
Dim conn As New ADODB.Connection
Dim rst As ADODB.Recordset
Dim strPath As String
Dim sql As String
Dim rngDest As Range

Set rngDest = ActiveSheet.Range("D3")
sql = "select pic from tblPics where id=1"

strPath = ThisWorkbook.Path & "\Pics.mdb"

conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" _
& "Data Source=" & strPath & ";"
conn.CursorLocation = adUseClient

Set rst = conn.Execute(sql)
If Not rst.EOF Then

picPath = ThisWorkbook.Path & "\temp.jpg"

oStream.Type = adTypeBinary
oStream.Open
oStream.Write rst.Fields("pic").Value
oStream.SaveToFile picPath, adSaveCreateOverWrite
oStream.Close

rngDest.Parent.Pictures.Insert(picPath).Select
With Selection
.ShapeRange.Top = rngDest.Top
.ShapeRange.Left = rngDest.Left
End With

End If

rst.Close
conn.Close

End Sub



"Jess" wrote in message
...
How can I insert a picture into an excel sheet so that its center floats
over a given cell? My picture in an Access table. Excel should call
Access,
retrieve the picture, and insert it.

Can anybody post an example?

Thanks




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
adding a picture to a form Ruth Excel Discussion (Misc queries) 7 October 31st 08 06:04 PM
Excel - adding a picture that will pop up when I wand over it? Jeffro Excel Worksheet Functions 1 July 1st 08 05:50 PM
Adding a picture to a comment box oxicottin Excel Discussion (Misc queries) 4 January 9th 07 10:55 PM
Adding picture to page setup DavidC Excel Programming 4 April 29th 06 02:06 AM


All times are GMT +1. The time now is 02:21 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"