Thread: insert image
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Norman Jones Norman Jones is offline
external usenet poster
 
Posts: 5,302
Default insert image

Hi VJ,

Try something like:

'=============
Public Sub Tester()
Dim myPath As String
Dim MyImage As String

my Path = "C:\Documents and Settings\VJS\" _
& "My Documents\My
Pictures\"
MyImage = "YourImage Name.jpg"

ActiveSheet.Pictures.Insert (myPath & MyImage)

End Sub
'<<=============


---
Regards,
Norman


"vj5" wrote in message
...
hi experts,
how to insert image from resource file.