how i add picture in excel using vb6.0 at runtime

  • Thread starter Thread starter Guest
  • Start date Start date
Hi Sacsin,

Try:

Sub Tester()

With Range("A1")
ActiveSheet.Pictures.Insert _
("C:\My Pictures\ZA5469.jpg")
End With

End Sub

Change the name and path of the picture file; change "A1" to the desired
insertion position.
 

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