Pages

Search

Microsoft Word - Issue when trying to open document in office 2007 on windows 8 laptop

Microsoft Word - Issue when trying to open document in office 2007 on windows 8 laptop


Issue when trying to open document in office 2007 on windows 8 laptop

Posted: 30 Mar 2014 03:22 PM PDT

so I have to download a doc and then open a new words doc, at which point I am asked if I will allow the program to make changes, then I have to open a doc through the blank doc I have opened.
 

Dialogue box is open error word 2013

Posted: 30 Mar 2014 03:18 PM PDT

When I open any Microsoft Word document, I get a dialogue box that reads: "Word can't do this because a dialogue box is open. Please close the dialogue box to continue." The problem is that there is only one dialogue box, the one that tells me to close the dialogue box. When I close the box the document loads normally. It isn't so much a problem as it is annoying. If anyone knows how to stop this box from popping up and pausing the loading of documents I would appreciate it.

How to center page numbers in ms word 2010?

Posted: 30 Mar 2014 02:47 PM PDT

Hi guys,

Can someone one help me with this one?

The page number is already centered yet it's still more to one side than actually sitting in the middle of the page.

Does it have to do with margins?

Thanks in advance.

Cannot insert jpeg picture. Message: picture created in Package.

Posted: 30 Mar 2014 02:30 PM PDT

Running Windows 8.1.  Suddenly Word won't accept jpegs, apparently created by "Package," that older versions accepted.  Do I add this app called Package?  How do I do that?  What picture formats will the new Word accept? 

Also, in this new system I have no idea how to find out what version was installed for me, so when I select "Office Products"  I have no idea what I am doing.

code erreur 30145-27

Posted: 30 Mar 2014 01:52 PM PDT

J'ai installé Office 2013 (pour famille et étudiants) le 18 mars 2014. Le 30 mars, après avoir voulu installer une mise à jour, je n'ai plus accès aux différentes applications de Office (code d'erreur 30145-27). J'ai effectué un nettoyage du disque, comme conseillé par certains, mais sans résultats. Que dois-je faire pour résoudre mon problème ? Merci de votre aide.

Paragraph spacing?

Posted: 30 Mar 2014 01:51 PM PDT

How can I adjust spacing between paragraphs?  All I see is a crude method of adjusting line spacing. 

microsoft not working

Posted: 30 Mar 2014 01:43 PM PDT

how can I speak to a live person

Page Numbering with Office 2007

Posted: 30 Mar 2014 01:27 PM PDT

How do I number a research paper page 2 with a Roman Numerial and page 3 with 1,2,3, etc

Microsoft Office not working - received error message

Posted: 30 Mar 2014 01:07 PM PDT

Something went wrong - couldn't start your program.  Please try starting it again, If it won't start, try repairing Office from "programs and features" in the control panel..

Did that and couldn't restart the program? Please assist.

Thank-you

Cannot save .doc as .docm

Posted: 30 Mar 2014 12:37 PM PDT

I have a Word document that was created in Word 2003 (or possibly Word 97).  It contains a VBA macro.  If I try to save it as a macro-enabled word document (.docm), I am unable.

After selecting Save As / Word Document, the Save As dialog box opens; I change the type to .docm; select Save, and an error message pops up:

Of course, I cannot save it as .docx since it contains a VBA project:

It seems to work properly as an Excel 97-2003 .doc document, but I'd like to figure out why I cannot save it in the .docm format.

Office Starter docs to full 2010 product

Posted: 30 Mar 2014 12:36 PM PDT

Have made a few documents in Word Starter. Now have full licensed product. How do I transfer the 'Starter' docs to the full version? 

I upgraded my computer from Vista Windows to windows 8. I am trying to send an email with an attachment. I am unable to do that? Can you help me with this

Posted: 30 Mar 2014 12:27 PM PDT

In reply to Richard Jordan_H's:

I upgraded about 6 weeks ago and I have not been able to send email with attachment. Why is it I can have so much trouble getting this fixed. I have been to send this email with the attachment for that length of time. Not all of us are business savvy or computer savvy. Why can't we have this fixed when those of us can't get this fix when needed. You want me to ask a question, well there is problem why I upgraded from Vista windows  to Window8  2010 about six weeks ago and I am unable to send an email with an attachment. I am unable to find what needs to be done to fix this. Is there anyone there that can help.

Microsoft WORD & Excel not working

Posted: 30 Mar 2014 11:33 AM PDT

I receive an error message when I try to open a previous word document or excel document created in Word 2013 & Excel 2013. The error message states, "Something went wrong with Word, word has run into an error that is preventing it from working properly.  Word will eed to close as aresult.  Would you want to repair?  When click on repair now nothing happens.  I need help fast because I have several projects that I am working on and need to submit.  Please HELP!!!! SHould I reinstall using my disk?

Blank spaces below text in table cells

Posted: 30 Mar 2014 11:04 AM PDT

After creating a table and filling a row of cells with information of varied length, I am often left with large empty spaces in cells below some shorter texts. This "wasted" space resists deletion.

My general impression is that Word lets me go to the cell with the most data in it, place cursor at end of it, and press delete.

Nothing I do erases the empty space between the end of the text and the bottom line of the cell.

??

pa

My dictionary apps no longer work

Posted: 30 Mar 2014 10:38 AM PDT

My dictionary apps no longer work. When I click "Insert" "My Apps" and click on Bing Dictionary it tries to load but I come up with, "App Error" and a button to restart but nothing happens. It used to work fine. I have uninstalled WORD and reinstalled it but that didn't help. I'm online but it just won't load the App.

Please help,

Jeff

Delete Hyperlink from Picture if One

Posted: 30 Mar 2014 09:25 AM PDT

Hi,

I have a Macro in Word that Pastes an Image from the Clipboard, then Resizes it.

I would also like it to check if the Picture has a Hyperlink, and if it does then Delete the Hyperlink else just exit Macro.

I have a bit of code that I found Online that removes all Hyperlinks on Pictures {See BOLD}, but I need to change this so it only checks the Picture I have Selected.

Here's my Macro:

Sub InsertCoverPicture()
    'Insert the Cover Picture
    With Selection
        .PasteAndFormat (wdPasteDefault)
        .MoveRight Unit:=wdCharacter, Count:=1
        .MoveLeft Unit:=wdCharacter, Count:=1, Extend:=wdExtend
        With .InlineShapes(1)
            .LockAspectRatio = msoTrue
            .Height = CentimetersToPoints(2)
        End With
    End With

    'Remove Hyperlink from Picture
    Dim oStory As Range
    Dim x As Long

    For Each oStory In ActiveDocument.StoryRanges
        With oStory
            For x = .Hyperlinks.Count To 1 Step -1
                If .Hyperlinks(x).Type = msoHyperlinkShape Then .Hyperlinks(x).Delete
            Next
        End With
    Next
End Sub

Thank you in advance,

Neil

Office for iPad - Word not having access privileges

Posted: 30 Mar 2014 08:28 AM PDT

Office for iPad - Word (but not Excel and Powerpoint) not having access privileges.

Error message: "Word cannot open the deocument: user does not have access privileges"

This message is completely inconsistent: about half of my Word files, WRITTEN BY MYSELF with Office 365 Home Premium, open without messaging anything.

Those which do NOT open (also written by myself), demand first logging in to Microsoft account EVERY time I try to load them, but EVERY time they show this error message, denying access.

I do not see any dependency with time and the contents of those simple Word files.

I have not seen this error message in any other Word version in any other device. It pops up only in Word for iPad (iOS 7.1).

Please, forum moderators, care to tell me again that you do not have a slightest clue about this?

Word 2007 doesn't load new documents using the normal.dot or normal.dotm template

Posted: 30 Mar 2014 08:21 AM PDT

I've saved changes to both the normal.dot and normal.dotm templates, in the designated file locations for those files within Word.   

But when I open a new document, it doesn't load the normal.dotm template formatting, but some other set of fonts and paragraphing designations.

How do I correct this?

I've used Word for nearly 20 years.  I'm using a new HP computer running Windows 7.   Thank you for your help.

Date field wrong day

Posted: 30 Mar 2014 05:11 AM PDT

Hello.

Well, I have a template file where I created a date field with the structure "Monday, 10 October 2010". The question is that current day's name doesn't match with the actual day.

So, as an example, today, what is shown on this date field is "Monday, 30 March 2014" but it should be "Sunday, 30 March 2014".

What can be wrong? System date is well set.

Thanks for your help!=)

How to print a document with paper size 11x17 in 8.5x11 paper?

Posted: 30 Mar 2014 04:51 AM PDT

How would I be able to print 11x17 size document in Word 2010 to 8.5x11 paper without corrupting the design and without one-by-one adjusting the size of text & picture. Please help me. Thank you!

Error checking of language

Posted: 30 Mar 2014 04:23 AM PDT

Hello,

In school, we have to learn a second Norwegian language, which is very similar to the one we use daily. There are however, an extensive list of words which are not allowed. To stop myself from making the same mistakes again, is it possible to somehow check for these words?

The spell checking in Word is quite poor for that particular language, as it is used by quite few people. Is there some way I can manually enter them and contribute to the spell checker? I can of course make a list and search for every individual word, but it is quite time consuming. Is it therefore possible to design a macro or use some other fancy ways of comparing two documents and locating the errors, where one of them contains a list of the taboo words?

All help is appreciated.

How to merge the end of two lines

Posted: 30 Mar 2014 02:00 AM PDT

Hello,

I have two information gathered from same table. My problem looks like:

- Information 1 { gathered from ...

- Information 2 { gathered from ...

I would like to make one curly brackets that spans over two lines, instead of having two curly brackets. 

Thanks for the help

Percentage Signs in Charts Backwards (%89, %66, etc...)

Posted: 29 Mar 2014 11:51 PM PDT

Hello everyone,

I have Microsoft Word. Every time I open a document (or create one) all charts I create have the percent sign in the front.

As a work around I create a custom format, putting the % in front, therefore putting in the back on the screen. This is annoying workaround because I edit and review a lot of documents.

Can anyone help? I've never see this problem before and no one else has it.

ms word 365 on iPad

Posted: 29 Mar 2014 10:11 PM PDT

I have a MS Office 365 subscription and I want to use the new apps on my iPad.  My problem is in order to access my subscription i have to sign in through iTunes and my MS Office subscription is through a different email.  I've only used  3 of my 5 licenses for the product.  Why should I have to purchase your product again in order to use it on my iPad?  How can this be resolved?

Word 2013's in-text citation for mla format is inconsistent.

Posted: 29 Mar 2014 09:31 PM PDT

In MLA format the in-text citation is inconsistent. I really have no idea why it just randomly changed.... 

More info in the picture....

see on the top paragraph the citation is (last name and page number[edited by myself]), then it suddenly changed in the bottom paragraph showing (last first).... I don't get this... why is this even happening?

Office iPad and OneDrive Issues - Missing Folders

Posted: 29 Mar 2014 09:09 PM PDT

After trying out Office Word, Excel and Powerpoint on my iPad it seems to me that OneDrive integration is broken.

The main problem is that various folders do not show up in the Office Apps on the iPad. These missing folders though do show up in the OneDrive app for iPad.

I've also had the Office Apps lock up when trying to refresh a folder. Either the program locks up and I have to restart it or, the refresh icon just spins forever.

To troubleshoot the issue I've removed the Word app, reinstalled and reconnected my OneDrive account. I've done this a couple of times and each time when I try to view one of my folders, the app hangs. After restarting the app the folder I was trying to view has missing subfolders.

If I add a subfolder after I've viewed the folder in Word (for example) the new folder shows up. However, none of the folders that are missing will ever appear, no matter how many times I try to refresh the folder.

Oddly enough the missing folders are different between Word, Excel and Powerpoint.

My "Mac Docs" folder should have 25 folders. Word shows 16 folders, Excel shows 9 and PowerPoint shows all 25. However, PowerPoint also has trouble refreshing the folder, and after I've removed some folders, its still displaying the removed folders.


Office on iPad has great potential for me, especially with OneDrive integration, however, at this stage it appears to be quite buggy.

bug report - opening documents created on a network PC

Posted: 29 Mar 2014 09:00 PM PDT

hello,

I recently created a document at work, on a computer that uses network drives, ie. my documents is \\user\<employee number>\My Documents\

I then sent the document to my home PC and opened it with Office 2013. It freezes on the splash screen, as the program appears to be trying to retrieve something from the (non existant) network drive (i don't have a network drive on my home PC).

If this could be looked into and fixed it would be appreciated.

Something went wrong We couldn't start your program. Please try starting it again NO ERROR CODE

Posted: 29 Mar 2014 07:31 PM PDT

This happens when I click on any of the Microsoft office icons: Microsoft, Please put your **** together, I paid money for this software and I expect it to work when I click on the icon of the software, I do NOT have time to read hundreds of threads in forums or follow "workaround" instructions to fix this problem. TIME IS MONEY AND YOUR ARE COSTING ME MONEY.I NEED THIS FIXED OR REFUND MY MONEY BACK. Ivan

Add Acrobat XI ribbon to Word Starter 2010

Posted: 29 Mar 2014 07:09 PM PDT

Is it possible to add the Acrobat XI ribbon to Word Starter 2010, and if so, how?

Select a Printer in Word using VBA

Posted: 29 Mar 2014 05:51 PM PDT

Hi,

I have  a Macro to update some DocVariables then for me to select which printer I wish to use from a list of 2.

I am using the procedure from an Excel Macro that I've set before, but it is not working in word.

My problem is that my Input Box is in a loop that I cannot leave unless I press CTRL+BREAK.

Please can you have a look at my Check Input section BOLD below...

Please note that I would like the input to be checked that it is a Number, and that the number is 1 or 2, and if Cancel is Clicked then Exit Macro.

Sub PrintCheckList()
    'PrintOut Time Change Check List

    'Settings
        'Variables
        Dim PlusMinus As String
        Dim ChangeHour As String
        Dim Default_Printer_Name As String
        Dim MyPrinter As String
        Dim Printer_Name As String
        Dim Printer_Name1 As String
        Dim Printer_Name2 As String
        Dim Printer_Name0 As Variant

        'Defaults
        Default_Printer_Name = Application.ActivePrinter
        Printer_Name1 = "Kodak ESP+7 on Ne01:"
        Printer_Name2 = "HP Photosmart B110a Series on Ne02:"
        PlusMinus = ""
        ChangeHour = ""

    'Set Change Details
    If Month(Now()) = "3" Then
        PlusMinus = "+"
        ChangeHour = "1:00am"
    Else
        PlusMinus = "-"
        ChangeHour = "2:00pm"
    End If

    'Update the Document
    With ActiveDocument
        .Variables("PlusMinus").Value = PlusMinus
        .Variables("ChangeHour").Value = ChangeHour
    End With

    'Update all Field Codes
    For Each FCRange In ActiveDocument.StoryRanges
        For Each FCField In FCRange.Fields
            FCField.Update
        Next FCField
    Next FCRange

Question:
    'Question to Set the Printer to Use
    Printer_Name0 = InputBox("Please select the Printer you wish to use..." + Chr(10) _
        + Chr(10) _
        + "     Please enter the Number for the Printer..." + Chr(10) _
        + Chr(10) _
        + "          1. " + Left(Printer_Name1, Len(Printer_Name1) - 9) + "." + Chr(10) _
        + "          2. " + Left(Printer_Name2, Len(Printer_Name2) - 9) + "." + Chr(10) _
        + Chr(10) _
        + "   The Current Printer is " + Chr(147) + Default_Printer_Name _
        + Chr(148) + "." + Chr(10) _
        + Chr(10), "Print Video Tickets...", 1)

    'Check Input
    If Printer_Name0 = vbCancel Then
        Exit Sub
    ElseIf Not IsNumeric(Printer_Name0) Or Printer_Name0 < 1 Or _
        Printer_Name0 > 2 Then
        GoTo Question
    End If

    'Goto Printer from your Selection
    If Printer_Name0 = "1" Then
        GoTo Printer1
    ElseIf Printer_Name0 = "2" Then
        GoTo Printer2
    End If

Printer1:
    Printer_Name = Printer_Name1
    Application.ActivePrinter = Printer_Name
    GoTo Print_Out

Printer2:
    Printer_Name = Printer_Name2
    Application.ActivePrinter = Printer_Name

Print_Out:
    ActiveDocument.ActiveWindow.PrintOut _
        Range:=wdPrintFromTo, _
        From:="1", _
        To:="1"

Cancel:
    Application.ActivePrinter = Default_Printer_Name
End Sub

Thank you in advance,

Neil