Pages

Search

Microsoft Word - why when e-mailing word 2010 document to recipient with XP they cannot load it?

Microsoft Word - why when e-mailing word 2010 document to recipient with XP they cannot load it?


why when e-mailing word 2010 document to recipient with XP they cannot load it?

Posted: 27 Apr 2013 09:25 AM PDT

I have windows 8 and Office 2010 word.  When I e-mail a document to a computer without 2010, they cannot unload it.

Cannot get Word 2007 to display all the tool bars on startup

Posted: 27 Apr 2013 07:33 AM PDT

When I first start up Word document only the following toolbars appear HOME, INSERT, PAGE LAYOUT, REFERENCE, MAILING,REVIEW, REVIEW.
I would like to see all the toolbar displayed for clipboard, Font, Paragraph, Styles, editing etc. and remain on.  It happened before and I was able to accidentally correct it  This happened recently when I tried to convert a document  sent by mail from word to PDF.  I am not sure if the problem is related to that.

Thanks for any help you can give
 
.[Moved from feedback]

why do I have to type a space after punctuation to see the character?

Posted: 27 Apr 2013 02:02 AM PDT

for instance when I type an opening quotation mark, the character does't appear until I type another character or a space.

the same is true of other quotation characters which normally appear in the superscript position such as "'" or "-"

This is such an annoying thing, I like to see the characters appear as I type, otherwise I loose concentration.

Margin on bottom of page get longer every page. And why does everything indent when I press tab for just one line?

Posted: 26 Apr 2013 01:52 PM PDT

I'm writing an essay for college and I noticed after I printed it that the bottom margin gets longer in every page. It'd be 1" on the first page then go to 1 1/4" to 1 1/2" and so on. Also when typing my works cited, how do you stop the whole thing from indenting after you press tab to indent the second line in a source?

Microsoft manual?

Posted: 26 Apr 2013 01:21 PM PDT

Can it really be true that Microsoft would develop such a wonderful and complex system as Word 2010, with all its abilities (I'm just getting into the finer points of templates and styles, having worked without them in the past), and not have produced an *official* manual or user guide? Surely it must be unheard of to produce a complex product and not issue a comprehensive manual for its users?

format mark/macro?

Posted: 26 Apr 2013 12:17 PM PDT

I have Word 2010 on a laptop running Windows 7.  I am looking for a way find and replace text involving numbers, letters and punctuation and have hit a road block.  A sample of the text would be:


Gusset

With MC, ch 4.

1st row: (WS). 2 dc in 4th ch from hook (counts as 3 dc). Turn.

2nd row: Ch 1. 1 sc in each dc across. Turn.

3rd row: Ch 3. 1 dc in first sc. 1 dc in next sc. 2 dc in last sc. Turn.

4th row: As 2nd row.

5th row: Ch 3. 1 dc in first sc. 1 dc in each of next 3 sc. 2 dc in last sc. Turn. 7 dc.

6th row: Ch 1. 1 sc in each dc across. Turn.



I want to delete all text that begins with a number and ends with a colon. (1st row:  2nd row: etc) I don't want to replace the text with anything else.  I can't find the proper format marks or wildcards to do this.  I would love to know what to put into the find and replace dialog box as well as record a macro (I want to record it because I have no idea how to write it!).  I would like the macro to be available to all templates, not just the one I'm using right now.

Thanks in advance!

KJ

No tabs only windows available?

Posted: 26 Apr 2013 01:22 AM PDT

Is it true that you can't open a new document in the same window like tabs in firefox?  As near as I can tell there is no option to open a new tab, but only new windows.  I bought this two days ago at a store, and it was the only word processor program that they had.

I want to grab some docs off of the net, but it is annoying to have so many windows on the screen.

If exist the goto else goto

Posted: 25 Apr 2013 05:51 AM PDT

Hi all,

 

I am trying to create a Macro to sort a list, but within the Macro I want to delete the Styles "Hyperlink", if it exists or skip delete if it does not.

I have created the following Macro to do this, but I am newish to VBA and can not get it to work:

 

Sub Sort_List()
'Sort List

    ActiveWindow.ActivePane.View.ShowAll = Not ActiveWindow.ActivePane.View.ShowAll
    Selection.Sort ExcludeHeader:=False, _
        FieldNumber:="Column 1", _
        SortFieldType:=wdSortFieldAlphanumeric, _
        SortOrder:=wdSortOrderAscending, _
        FieldNumber2:="", _
        SortFieldType2:=wdSortFieldAlphanumeric, _
        SortOrder2:=wdSortOrderAscending, _
        FieldNumber3:="", _
        SortFieldType3:=wdSortFieldAlphanumeric, _
        SortOrder3:=wdSortOrderAscending, _
        Separator:=wdSortSeparateByCommas, _
        SortColumn:=False, _
        CaseSensitive:=False, _
        LanguageID:=wdEnglishUK, _
        SubFieldNumber:="Paragraphs", _
        SubFieldNumber2:="Paragraphs", _
        SubFieldNumber3:="Paragraphs"
    ActiveWindow.ActivePane.View.ShowAll = Not ActiveWindow.ActivePane.View.ShowAll
    Selection.HomeKey Unit:=wdStory

    If ActiveDocument.Styles("Hyperlink") Then GoTo Delete Else GoTo Save

 

Delete:
    ActiveDocument.Styles("Hyperlink").Delete
    CommandBars("Styles").Visible = False

 

Save:
    ActiveDocument.Save
End Sub

Please can you help me to fix the error from the If... part of my Macro.

 

Thank you in advance