Thread Rating:
  • 2 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Inserting Images in the Word file.
#1
Not Solved
Hi Guys...

I want to insert images in the word file one after the other at the run time or after the results generated.

Main aim is to insert the images in the word file one after the other.....

Smile
Reply
#2
Not Solved
Hi,

Refer to the below link it might help u,


Regards,
Sankalp
Reply
#3
Not Solved
Hi,

Check this code

Code:
Set objWord=Createobject("Word.Application")
objWord.visible=true
Set objDoc=objWord.documents.add()
Set objShape=objDoc.inlineShapes
For i=1 to 3
objShape.addpicture("c:\"&i&".jpg")
objWord.Selection.Typeparagraph()
Next
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Check the word and get no. of times that word in the webpage Sandeep.san229 0 1,176 10-31-2018, 06:42 PM
Last Post: Sandeep.san229
  pageDown in word.application wannel 0 1,668 11-25-2016, 10:06 PM
Last Post: wannel
  Inserting variable values into Descriptive Programming Functions eske99 2 3,144 12-18-2015, 01:47 PM
Last Post: vinod123
  Automating Word Docs bart02 0 2,685 07-18-2014, 03:25 AM
Last Post: bart02
Sad Save data from pdf file to a word doc Amar 0 2,408 12-12-2013, 12:29 PM
Last Post: Amar

Forum Jump:


Users browsing this thread: 1 Guest(s)