how can i open a word file
search for an image in the word document, and make the image start from a new page soo all pages below will be pushed too of course
is this possible?
thnaks in advance
peleg
Printable View
how can i open a word file
search for an image in the word document, and make the image start from a new page soo all pages below will be pushed too of course
is this possible?
thnaks in advance
peleg
I haven't tested this code:VB Code:
Sub main() 'ASSUMES that a valid reference has been made to the most 'current version of Word in the Visual Basic Editor for Automation purposes '(of either VB6 or another Microsoft (or other) application). Dim wrdApp As New Word.Application Dim wrdDoc As Word.Document wrdApp.Visible = True Set wrdDoc = wrdApp.Documents.Add With wrdDoc.Range.Find .ClearFormatting .Replacement.ClearFormatting .Execute findText:="^g", Replacewith:="^m^&", Forward:=True, Wrap:=wdFindContinue, Format:=False, MatchCase:=False, MatchWildcards:=False, Replace:=wdReplaceAll End With Set wrdApp = Nothing End Sub
Moved to Office Development