Link to home
Start Free TrialLog in
Avatar of GustavoValdes
GustavoValdes

asked on

Automating word

I have a problem when i'm trying to automate Word.

I have a code like that:

    Do
        'Incrementing the number of processed lines
        iProcLines = iProcLines + 1
       
        ' Select a line.
        oWordApp.Selection.MoveDown unit:=wdLine, Count:=1
       
        'This is an alternative way to mark the line
        'oWordApp.ActiveDocument.Bookmarks("\LINE").Select
       
        If iProcLines = 216 Then Stop
       
        If ((iProcLines > 0) And ((iProcLines Mod 24) = 0) And ((iTotalLines - (iBreaks - 1)) - (iBreaks - 1) * 24) > 24) Then
            'Add a line break
           
            'ActiveDocument.StoryRanges(0).InsertBreak WdBreakType.wdPageBreak
            'ActiveDocument.StoryRanges(wdMainTextStory).InsertBreak WdBreakType.wdSectionBreakNextPage
            oWordApp.Selection.InsertBreak wdSectionBreakNextPage
            iBreaks = iBreaks + 1


I have copy this code from a macro I have made in Word to move down through the lines of a document, however because of the Selection object, this code only works if the document is visible, if it's not the code runs but does the things in a completely differente way.

Is there a way to change Selection for another instruction?

Thanks in advance

Avatar of _agj_
_agj_

instead of selecting and moving on...u cud navigate through lines using the object.

i think it is document.Sentences or document.Lines
Avatar of GrahamSkan
Just to check that we’re all looking at the same thing: - when I run the code below, which is based on your snippet, the difference is that all the new section breaks are inserted at the beginning of the document if the application is invisible, instead of at 24-line separation if it is shown.

You probably understand that the root of the problem is that what constitutes a line is volatile, because it depends so much on formatting, which is done dynamically. That is why there is no Line object. The MoveDown, etc,  methods depend on the display.

Are your ‘lines’ limited by anything other than the fold-point, e.g. paragraph mark, full-stop, newline, or a table row? If so we could work on that.

If not , perhaps you need to re-appraise your approach. What is your objective?

Private Sub Command1_Click()
Dim oWordApp As Word.Application
Dim iProcLines As Integer
Dim iBreaks As Integer
Dim Doc As Word.Document
Dim rng As Word.Range
Dim i As Integer
Const strFile = "C:\Documents and Settings\Graham Skan\My Documents\Allwork\Experts\Selection_MoveDown\quick brown fox.doc"
Set oWordApp = New Word.Application
For i = 0 To 1
    iProcLines = 0
    iBreaks = 0
    oWordApp.Visible = -1 * i
    Set Doc = oWordApp.Documents.Add(strFile)
    Set rng = Doc.Content
    rng.Collapse wdCollapseStart
    rng.Select
      Do
            'Incrementing the number of processed lines
            iProcLines = iProcLines + 1
           
            ' Select a line.
            oWordApp.Selection.MoveDown unit:=wdLine, Count:=1
           
           
            If iProcLines = 216 Then
                Exit Do
            End If
            If (iProcLines Mod 24) = 0 Then
                'Add a Section break
               
                oWordApp.Selection.InsertBreak wdSectionBreakNextPage
                iBreaks = iBreaks + 1
            End If
        Loop
    Doc.SaveAs strFile & i
    Doc.Close
Next i
oWordApp.Quit
End Sub
ASKER CERTIFIED SOLUTION
Avatar of Computer101
Computer101
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial