Pages

Search

Microsoft Word - page numbers not advancing

Microsoft Word - page numbers not advancing


page numbers not advancing

Posted: 24 Jun 2013 07:33 AM PDT

I am working on a large document using Word 2007. In the past I never had any trouble using page numbers and the numbers always advanced when I started a new page. Like before, I used the Page Number icon under Insert/Header & Footer and selected the style. The number 1 appears on thye first page and every consecutive page and does not advance. I even tried using a different layout for odd and even and it still makes no diference. As a test I created a Table of Contents to see if it would show page 1 on all entries or diferent page numbers and it shows diferent page numbers so the problem appears to be in displaying the page number on each page. How can I get the page number to advance?

MSWORD vs 7 document slow to open from "search"

Posted: 23 Jun 2013 08:48 AM PDT

I ran microsoft Office 7 professional repair program with the appwiz.cpl entrance. The repair program did not fix the 15 second delay on opening a msword VS 7 from search menu, what is next to try?

name associated with comments in Word ...

Posted: 23 Jun 2013 07:12 AM PDT

I subscribe to office 365 home edition and installed office on my wife's computer and my computer. When my wife makes a comment in a word document my name appears with the comment. How do I change this to her name on her computer and have my name show on comments on my computer?

Shading in W7

Posted: 22 Jun 2013 08:03 PM PDT

When I open a particular document (typed by me) all is good, ie black print on white background, but if I take any mouse action the whole text gets gray shadows behind. Footnotes are unaffected but the index is!

Any help gratefully accepted.

Roger M

CTRL+M indent problem

Posted: 22 Jun 2013 11:16 AM PDT

I regularly format my Word documents with indents by using CTRL+M to indent.  Since switching from Word 97 to Word 2013, I have run into the following problem: instead of CTRL+M indenting only the paragraph I am working in, it indents all of the previous paragraphs as well.  If I then hit CTRL+Z to undo, the other paragraphs return to their proper place, leaving indented only the paragraph I'd intended to indent in the first place, but it seems crazy to need to do that extra step every time.

I have verified that there are paragraph breaks between the paragraphs, so I'm mystified at this behavior.

Can anyone help?

Microsoft Word has stopped working

Posted: 21 Jun 2013 04:52 PM PDT

Everytime I try to open my Office Professional Plus 2013. I the error message in the title. When I select check for online solution, it close the program.  

I already remove Office with Microsoft fix it and re-installed the program. Problem still exists.


Problem signature:
  Problem Event Name: BEX
  Application Name: WINWORD.EXE
  Application Version: 15.0.4505.1510
  Application Timestamp: 51aa0ebb
  Fault Module Name: unknown
  Fault Module Version: 0.0.0.0
  Fault Module Timestamp: 00000000
  Exception Offset: 0042d5b8
  Exception Code: c0000005
  Exception Data: 00000008
  OS Version: 6.1.7601.2.1.0.768.3
  Locale ID: 1033

Additional information about the problem:
  LCID: 1033
  skulcid: 1033

Why isn't the ToC picking up all my table captions?

Posted: 21 Jun 2013 01:44 PM PDT

Hi All,

 

More numbering problems!

 

This time w/ captions.

 

I have 77 tables in a 150-page Word document.

 

All of the tables have captions (clicking the caption area clearly shows they are set w/ the Caption style).

 

For some reason, when I re-generate the ToC, it's skipping a few. I can't see any differences in format or anything else, that would make it skip them!

 

Any ideas?

 

Thanks!

 

Mark H.

Activate an Open Word Document

Posted: 21 Jun 2013 05:26 AM PDT

Apologies. I have posted this question (in part) before, but have not had an answer.

 

I have an Excel VBA UserForm with several CommandButtons. I am using the CommandButtons to invoke a Help facility, whereby the topic numbers relate to bookmarks in a Word document. This part works OK.

 

I have written the following code .....

 

Private Sub OpenHelpDocument(strTopic)
Dim strPath As String
strPath = "C:\My Documents\Help Topics.doc"
Dim objWord As Object
Dim docWord As Object
Set objWord = CreateObject("Word.Application")
objWord.Visible = True
    If funIsDocOpen(strPath) = True Then

        MsgBox "Testing"
        Set docWord = objWord.documents.Activate(Filename:=strPath)   ' **** This code fails ***
    Else
        Set docWord = objWord.documents.Open(Filename:=strPath, ReadOnly:=True)
    End If
docWord.Bookmarks(strTopic).Range.Select
End Sub

 

When the sub 'OpenHelpDocument' is run for the first time, the function 'funIsDocOpen' correctly returns 'False' and the Word Document 'Help Topics.doc' opens in read-only mode at the correct bookmark. So far, so good.

 

However, when run for a second time with a new topic (with 'Help Topics.doc' already open), it fails "Run-time error '438': Object doesn't support this property or method". The MsgBox "Testing" is displayed prior to the error message.

 

I want the Word Document to remain open and available for (potentially) multiple Help/Topic/Bookmark enquiries. It will be closed later.

 

How can I 'Activate' the existing Open Document when the function returns 'True'? I am assuming that 'Activate' is the correct teminology!!

 

Thanks in anticipation, and apologies again for a repeated question.

 

mail merge data source

Posted: 21 Jun 2013 03:26 AM PDT

I am trying to carry out a mail merge using an Excel 2007 file but when I select an existing excel spreadsheet I get a dialogue box headed 'header record delimiter' and asking me to select the appropriate 1.  It doesnt matter what I do I then  get a message saying the data source is empty...help  anybody  

Help With Headers In A document

Posted: 19 Jun 2013 08:48 AM PDT

How do I make our company logo appear on the first page in the header only it is on the all the pages.

Check if document is already open

Posted: 19 Jun 2013 03:10 AM PDT

I have a UserForm with several CommandButtons. I am using the CommandButtons to invoke a Help facility, whereby the topic numbers relate to bookmarks in a Word document. This part works OK (thanks to an earlier question).

 

I now need to check if the word document is already open.

 

I have written the following code ....

 

Private Sub OpenHelpDocument(strTopic)
Dim strPath As String
strPath = "C:\My Documents\Help Topics.doc"
Dim objWord As Object
Dim docWord As Object
Set objWord = CreateObject("Word.Application")
objWord.Visible = True
    If funIsFileOpen(strPath) = True Then
        MsgBox "True" 'Testing Only
        ' *** Not working here ***
        ' *** I want to goto the bookmark in a Word document that is already open
        ' *** Set docWord = something

    Else
        MsgBox "False" ' Testing Only

        ' This route works OK if I force the function to return False
        Set docWord = objWord.documents.Open(Filename:=strPath, ReadOnly:=True)
    End If
docWord.Bookmarks(strTopic).Range.Select
End Sub

 

Function funIsFileOpen(strPath As String)
Dim intErrorNumber As Integer
On Error Resume Next
    If Len(Dir(strPath)) = 0 Then
        MsgBox "File does not exist"
    Else
        MsgBox "file exists"
        ' *** Check if file is already open ***
        ' *** Set value for intErrorNumber ***
    End If
   
    Select Case intErrorNumber
        Case 0    ' *** Is this value correct? ***
            funIsFileOpen = False
        Case 70  ' *** Is this value correct? ***
            funIsFileOpen = True
        Case Else
            MsgBox "Unknown Error"
            Exit Function
    End Select
End Function

 

 

The areas in the code where I need some help are marked as ***.

Thanks in anticipation.

for what purpose one-sample T-test is used in SPSS

Posted: 19 Jun 2013 01:36 AM PDT

for what purpose one-sample T-test is used in SPSS