Pages

Search

Microsoft Word - Emailed word document not complete when viewed through ipad or iphone

Microsoft Word - Emailed word document not complete when viewed through ipad or iphone


Emailed word document not complete when viewed through ipad or iphone

Posted: 09 Sep 2013 03:03 PM PDT

I created a document using multiple tables with different sized font, columns, rows.  The margins of the document are all the same (narrow) and all tables fall within those margins.  When I view it or print it the entire document (with table borders) is visible and correct.  However, when I email it and open it on my iphone or ipad certain sections on the right side of the document are cutt off, and there are no table borders visible for the entire document.  The table on the top of the document is mostly complete except for the bottom two rows, the entire center table has about 1 1/2 inches of the text/cells on the right side cutt off, and the bottom table of the document is complete, I also noticed the text/cells in the tables that are cutt off are not lined up with the text/cells in the other tables when I am viewing it on my iphone/ipad, but they are when I view the document on any other device.  I saved the document as a PDF and emailed/opened it with my iphone/ipad and the document is complete with table borders in tact and formatted exactly as it should.  Is this a bug with the program apple is using to view word documents?  Is there some formatting change I can make to the word document to keep it in tact when being viewed on an iphone/ipad?  I'm trying to save employees from having to save the document as  PDF in order to email it out.  Please let me know if anyone has any ideas!!  Thank you!!!

Error Code 424: Object Required! Please Help me Figure out What I'm doing wrong?

Posted: 09 Sep 2013 02:53 PM PDT

Everything was flowing great, until it just started acting up like this.

 

Please let me know what area is incorrect.

 

Basically there are 10 corrections. I've bookmarked them all and named them accordingly. The userform I have set up has checkboxes that once you select should remain hidden or should show.

 

Here is the code (or some of it, I've negated repetitive codes):

 

Private Sub CommandButton1_Click()
With ActiveDocument

 

'Copy letter elements to letter template from userform

Dim bmks As Bookmarks
Dim bmRange As Range

'Pass the userform values to the document's bookmarks.

Set bmks = ActiveDocument.Bookmarks

Set bmRange = ActiveDocument.Bookmarks("FacilityName").Range

bmRange.Text = Me.txtFacilityName.Value

 

End With

UserForm5.Hide

End Sub

 

Private Sub CheckBox1_Click()
If CheckBox1.Value = True Then
CheckBox243.Value = False
End If
If CheckBox1.Value = True Then
CheckBox244.Value = True
Else
If CheckBox1.Value = True Then
CheckBox2.Value = False

With Selection.Bookmarks
End With

End If
End If

End Sub

Private Sub CheckBox2_Click()
If CheckBox2.Value = True Then
CheckBox1.Value = False
End If
With Selection.Bookmarks
End With
End Sub

 

Sub CheckBox1_Change()
    Call ShowHideTable
End Sub
 
Sub ShowHideTable()
    With Selection
    Dim orange As Range
    Set orange = ActiveDocument.Bookmarks("Correction1").Range
    End With
    If CheckBox1.Value = True Then
        With Selection.Font
            .Hidden = True
        End With
        With ActiveWindow.View
            .ShowHiddenText = False
            .ShowAll = False
        End With
    Else
        With Selection.Font
            .Hidden = False
        End With
        With ActiveWindow.View
            .ShowHiddenText = True
            .ShowAll = True
        End With
    End If
End Sub
 
 
 ' the other View properties
 ' if you want to still see paragraph marks, you
 ' must explicitly turn it on = False
 '  .ShowAnimation = True
 '  .Draft = False
 '  .WrapToWindow = False
 '  .ShowPicturePlaceHolders = False
 '  .ShowFieldCodes = False
 '  .ShowBookmarks = True
 '  .FieldShading = wdFieldShadingWhenSelected
 '  .ShowTabs = False
 '  .ShowSpaces = False
 '  .ShowParagraphs = False
 '  .ShowHyphens = False
 '  .ShowHiddenText = False
 '  .ShowAll = True
 '  .ShowDrawings = True
 '  .ShowObjectAnchors = False
 '  .ShowTextBoundaries = False
 '  .ShowHighlight = True
 '  .DisplayPageBoundaries = True
 '  .DisplaySmartTags = True
 
 
Sub CheckBox2_Change()
    Call ShowHideBookmark
End Sub
 
 
Sub ShowHideBookmark()
    Dim orange As Range
    Set orange = ActiveDocument.Bookmarks("Correction2").Range
    If CheckBox2.Value = True Then
        With orange.Font
            .Hidden = False
        End With
        With ActiveWindow.View
            .ShowHiddenText = False
            .ShowAll = True
            End With
    Else
        With orange.Font
            .Hidden = True
        End With
        With ActiveWindow.View
            .ShowHiddenText = False
            .ShowAll = False
        End With
            With Selection.Bookmarks
End With
    End If
End Sub
Sub CheckBox3_Change()
    Call ShowHideBookmark
    Dim orange As Range
    Set orange = ActiveDocument.Bookmarks("Correction3").Range
    If CheckBox3.Value = True Then
        With orange.Font
            .Hidden = False
        End With
        With ActiveWindow.View
            .ShowHiddenText = False
            .ShowAll = True
            End With
    Else
        With orange.Font
            .Hidden = True
        End With
        With ActiveWindow.View
            .ShowHiddenText = False
            .ShowAll = False
        End With
            With Selection.Bookmarks
End With

    End If
End Sub

 

Private Sub CommandButton2_Click()
'display a message with the help button and a title
MsgBox "Select correction # and click either 1 or 2 again" & vbCrLf & "Press Start", vbOKOnly, ">>Help<<"

End Sub


Private Sub UserForm_Initialize()
    CommandButton1.Value = True
    With ComboBox1
        .AddItem ""
        .AddItem ""
        .AddItem ""
        .AddItem ""
        .AddItem ""
        .AddItem ""
        End With
    End Sub

 


 

Word 2007 > Insert > Text | Object > Object > Adobe Illustrator Artwork 15.1

Posted: 09 Sep 2013 01:44 PM PDT

What is the function of the ribbon "command" described in the title of this question/discussion and how does it work? At first look, I would guess that I should be able to import an existing illustration (.ai). Over the years, I've never been able to get it to do anything useful nor find a description of exactly what it does and how to use it.

Macro to keep Word 2010 from changing the system default printer

Posted: 09 Sep 2013 01:39 PM PDT

I'm trying to get this code to work with Word 2010, Windows 7(x64) and network printers in our office.  From what I've read, the macro keeps Word from changing the system default printer.  I have double checked my code and printer names (with Ctrl+G and the Immediate window using the debug.print ActivePrinter command).  When I run the macro below, nothing happens...no errors...nothing.  Although I do have it associated with a button on a custom ribbon saved to a global template, I have also tested the macro after saving it to normal.dotm.  It still does nothing.  I know the printer names are correct because I previously simply recorded a macro to print to our network printers, but then users complained that their system default printers were being changed.  Someone outside our network tested the code and it worked for them.  Can anyone help resolve issues with this macro? 

 

Sub PrintRicoh01(control As IRibbonControl)
'
' PrintRicoh01 Macro
'
'
    With Dialogs(wdDialogFilePrintSetup)
      .Printer = "\\HFBPS01\RICOH_ Aficio_ 01"
      .DoNotSetAsSysDefault = True
      .Execute
    End With
End Sub

unable to edit converted pdf

Posted: 09 Sep 2013 01:36 PM PDT

After scanning a  statement on my Epson WF-3540 I saved as a PDF file.

Opened PDF with Word 2013 then converted to a Word Document.

I am not able to edit it.

Please help.

Dave

Word 2010 Save As bug and spelling errors

Posted: 09 Sep 2013 01:14 PM PDT

Scenario:

Word document with form fields saved in SharePoint 2010.

Document in current state spell checks as you type with the red underline.  (Backstage> Proofing > Exceptions for > both unchecked)

BUG:

Open document from SharePoint as read.  Click "Save As" and save to desktop and close Word.  Open document from desktop and the spell check no longer works in the form fields.  (Backstage>Proofing>Exceptions For> both boxes are checked).

*Document is posted to an intranet, so saving back to library is not an option.  Users need to consume the document and come back to make edits.
*This will also fail in a working document placed on desktop and perform "save as" back to desktop.  So SharePoint is eliminated.

Does anyone have a fix or is anyone else experiencing the same problem?

Can't edit recurring appointments on Office 365 Outlook

Posted: 09 Sep 2013 01:10 PM PDT

I have created a calendar with weekly recurring appointments on Outlook. This has now been sync'd with Office 365, and the appointments appear correctly. Using "real" Outlook, I usually enter details of the appointments as notes within the single occurrences.

 

However, when I try to edit these recurring appointments (whether I choose the single occurrence or the series), the Outlook Web App displays a blank window. Does this on a variety of computers, and using IE9, IE10, Firefox, Chrome.

 

I can edit the appointments with no problem using my Windows Phone. The details of the appointment notes all appear correctly.

 

The appointments were created as simple, single 50 minute appointments (they're school lessons) repeated weekly over 48 weeks, with odd occurrences manually deleted (school holidays)...

 

(Office topic is not Microsoft Office Word, but there was no Outlook included!)

MS Word 2010 inconsistent tab spacing

Posted: 09 Sep 2013 12:57 PM PDT

Hello there,

I created a new document (no special formatting, just default doc). I started typing a line. When I click on tab the first time, the cursor moves in a certain space but when I click tab for the second time, it moves much farther than it does it in the first instance. I checked the tab properties, they are :

Tab Stop Position: blank

Default Tab Stops: 0.5"

Alignment: left

Leader 1-None

 

As I moved from one tab location to the other I checked those settings again and they seem to be the same. I can't figure out why it changes in that second instance, why it jumps farther than it does in the first instance. Also, it seems to follow the same space after the 2nd instance (so it's only the first tab spacing that is different). I don't have any settings on my ruler either.

 

Can you explain why it is behaving that way?

 

Thanks,

Office 2010 theme deployment

Posted: 09 Sep 2013 12:28 PM PDT

Hello,

 

There doesn't seem to be a forum for Office questions so I have posted this here..

 

I have looked around for the answer to this question and I just want to clarify the best way to deploy a custom corporate theme (and make it the default theme) for all users across Word, Excel and PPoint.

 

From my reading, it appears that you create the theme, deploy it to C:\Program Files (x86)\Microsoft Office\Document Themes 14, then create custom versions of Normal.dotm, blank.potx and book.xltx and place them in the startup folders for each application.

 

Is there a better way of achieving the goal of setting corporate colours across Office 2010 or is this it?

 

Thanks in advance,

Mark

Default address locations on envelopes

Posted: 09 Sep 2013 12:20 PM PDT

I've used the envelope printing many times, but today when I printed an envelope, the return address printed in the middle of the envelope at the top and the destination address printed where the return address should be.  I found that the print locations were changed to Address .4" and .25" and Return to Auto and Auto.  How can I reset them and save the values I set?

How to Insert Parentheses Around TOC Pages

Posted: 09 Sep 2013 12:11 PM PDT

I have a Word 2010 table of contents that has the page references immediately following the headings (no dot leaders). I would like to put parentheses around the page numbers (or insert commas) to separate them from the headings. When I toggle the page number in my table of contents, it shows the following: {PAGEREF _Toc366490238 \h}. I opened the field PAGEREF and added the following: PAGEREF  \# "( )" The TOC balks right away and says "Error! no bookmark name given." When I return to the the PAGEREF, my switch is gone. I looked at the following article on Word fields, but I'm still stumped: http://www.gmayor.com/formatting_word_fields.htm. I would insert a sample of what I'm trying to create, but this web editor doesn't seem to respect my carriage returns (hence the gigantic paragraph above).

6 page booklet with numbered pages using columns

Posted: 09 Sep 2013 10:32 AM PDT

I am creating a tri-fold booklet on 11 x 17 paper with 6 pages - 3 on front and 3 on back.  I can do this in columns but then the page numbers don't work because they are centered above the whole page and the multiple pages/booklet option requires that the number of pages be a multiple of 4.  Can anyone help with getting page numbers on columns that don't jump around when you insert material?

 

Thanks

dianek_981

missing citation/biblography

Posted: 09 Sep 2013 09:29 AM PDT

in the reference tab my citation/biblography missing and it grayed out

File Names turning color

Posted: 09 Sep 2013 09:25 AM PDT

Why or under what circumstances does the file name turn blue and is there a way to turn it back to black?

Word 2013 - table border issues

Posted: 09 Sep 2013 09:10 AM PDT

I have created a table in Word.  When trying to add a border to cell, Word applies the border to adjacent cells.  For example, I click on a cell, then I click on the "Borders" button in the "Borders" group of the DESIGN tab.  I then click on "Bottom Border".  Word applies a bottom border to the entire row.  I have tried highlighting just the cell first.  Same problem.  I have tried clicking on "Borders and Shading" under the "Borders" button and then changing "Apply to"" to cell then selecting the bottom border.  Same problem.

 

I have turned on formatting marks to verify that there isn't anything hidden that would be causing this.  There isn't.  There are no nested tables.

 

I have never had so many problems with table borders until moving to Office 2013.

 

Please help.

thumbnail view shows weird page numbering

Posted: 09 Sep 2013 08:44 AM PDT

As it can be seen on this screenshot, i can not understand why it says on the navigation thumbnail page on the left side.. 1-0-1.. it would make sense if it started at 1 or 0 and goes on (0,1,2,3,...) 

are there any explanation to this?

Why is text stacked vertically when I resize cell? (Word 2007)

Posted: 09 Sep 2013 08:30 AM PDT

After searching various terms (re-flow text, text stacking, changing language etc) I am still non the wiser as to why after entering text into a table in MS***Word 2007 and resizing by dragging the ruler/vertical table bar the text "stacks" (and NO I am not getting confused with text orientation, or at least not that immediately obvious from the rather confusing "ribbon"). To wit, the stacking is like this:

I
'
d

r
a
t
h
e
r

u
s
e

a

M
a
c

I would be very grateful to hear any solutions from someone with the patience to read through all the MS***Word 2007 forums, help topics etc. I'm sure the solution is probably quite simply, sadly it has eluded me (using Word in italian is not assisting with reducing frustration).

Thank you.

Word 2013 Review - Highlight Updates, Other Authors

Posted: 09 Sep 2013 08:29 AM PDT

Working with Track Changes and Comments in Word 2013.

 

Word 2013

Windows 7 and Windows 8

 

Under Show Markup, what do the Highlight Updates and, Other Authors features do. And how do I get those turned on?

No matter how I change my views, those two features are always disabled.

 

Thank you.

Sue

 

Word 2007 - Paragraph Marks Will Not Stay Turned Off

Posted: 09 Sep 2013 08:06 AM PDT

In Word 2007 (using Windows 7), turning the paragraph marks on of off is easy. On the Home Ribbon, in the Paragraph section, you simply click the "paragraph" symbol. I have turned it on and off many times, but I prefer to leave it off unless I am proof-reading a document.

 

My problem is, I turned the marks on to check a document ,and now every time I start Word, the paragraph marks are displayed by default. Word will not save the template with the marks turned off by default.

 

I have tried

1) Turning off the paragraph marks.

2) Changing the font to something different.

3) Saving the changes as "Default..." in the Font window.

 

And

1) Turning off the paragraph marks

2) Opening the Paragraph window

3) Changing sometime (like Alignment)

4) Saving the changes as "Default..." in the Paragraph window.

 

However, while the changes to the font or paragraph style save, when I next start Word, I have the new font and new style, but once again the paragraph marks are visible and need to be clicked off.

 

With all of my attempts, I do not get the warning to save changes to normal.dotm. I have seen the message in the past but have not seen it since the marks got stuck in the "Display by Default" position.

 

If only takes a moment to turn the paragraph marks display off, but I would like to restore to the default of NOT displaying the paragraph marks every time Word starts.

word 2013 crashes when copy and pasting

Posted: 09 Sep 2013 06:46 AM PDT

I have been having a recurring problem when copying from one word document to another where Word 2013 crashes. When this occurs I have to completely shut down word. Sometimes it recovers the files and sometimes it does not. In some cases I can circumvent the problem by pasting the information to a blank word document and then copying it again and pasting it into the final document but this is not foolproof.

 

This is frequent and extremely annoying.

 

Anybody else experiencing this?

 

Automatic footer when creating/changing the title of the chapter (Header 1) in Microsoft Word 2010

Posted: 09 Sep 2013 06:22 AM PDT

Hi, 

I have a question about Microsoft Word 2010. I would like to know how I can setup an automatic footer with the title of the chapter (Header 1). For clarity, I want that the title of the chapter is shown in the footer without typing it manually.
Thanks for the support!

Greets,
Michiel Verbeke

automatic filling in of table columns

Posted: 09 Sep 2013 05:37 AM PDT

I have a question about word. I have a table and in the first,second and fourth cells I have some numbers.
So my question is if you can make word fill in the third and fifth cells by itself, so actually make it do some math, like in excel.

And the fifth cell should automatic be written in "currency".


Do Not Check Spelling or gramar ticked always.

Posted: 09 Sep 2013 04:22 AM PDT

I am using Microsoft Office Professional 2010 and when working on documents created from templates I can not uncheck the Do not Check Spelling or Grammar default.  Help

Word 2007 - create a style with numbers and characters before text 1.1.1 (a) Text starts here

Posted: 09 Sep 2013 02:55 AM PDT

Is it possible to create a style that sometimes also has characters alongside it and still maintain the automatic numbering style - see 1.1.1 and 1.1.2     (a) below.

 

 

1.1     this is normal paragraph text and is a style.

 

          1.1.1       Text for this type of paragraph and is another style level.

 

          1.1.2           (a)      tu[;omgklfkfopds jklsdf fsmsdfo sdm sdfo do fsd f ifo jfmsdfn osidfd mksf d89mjfsdofuis diofjsdiofusd ifsdfsd

 

                         (b)      ofosfuosijfsd0ofujsdf s89dujsdofud8fiojdsifudisofusodifuisofuidosfuisodfuosf

 

                         (c)      ofisdfsldf0nm i9ffmsdp fsdofsfm fsdfsd

 

          1.1.3       (a)      lkfs0fidsmfsdo  iosdfsdfsdfsd

 

                         (b)      joif90sdfm  n8fnmsdofu8s8fjsfdfudi

Word Web view display limited

Posted: 09 Sep 2013 01:48 AM PDT

In Word (2010) I use Web View a lot. I have the option set to "Wrap to Window" so that I can see the maximum content (especially on my landscape oriented laptop screen.

It normally works "correctly". I have a reference document with a collection of macros. It is "working correctly", text is wrapping as expected. Today, when I copied an document from an external source the wrapping was limited to 4 inches. None of the formatting options I looked at had any effect.  It issue is specific to Web Layout view.
The upper window is my working document, the bottom window is the document downloaded from the web.  When I copy and paste the web document into my document, my document picks up the limited use of the window as in the "original" document.

Note that both windows are sized the same, both in Web Layout and at the same zoom level.

I tried copying all but the last paragraph mark, that did not help.

I prefer to have the two documents merged so when I'm searching for solutions I only have to look in one place.  Since Paul B.s document is "live", he is constantly updating it, I want to keep my copy up to date.  If I have to copy the individual changes it will be a PITA (there are a lot of them).

word 2010 track changes change the user name to author after save the document

Posted: 08 Sep 2013 11:54 PM PDT

Hi, When I click on save button to save the document, the user name has changed to author instead of based on the user name "ABC" in track changes.  Please advise.  Thank you.

Unable to open Word 13 docs on Office 365. because "We can't verify your Office 365 subscription, so most features of Word have been disabled".

Posted: 08 Sep 2013 11:34 PM PDT

If any one can help with this?  After this message about not being able to verify our Office 365 subscription comes up, is there a place to verify our subscription?   My son has urgent docs to send to school today. Thank you!!

In a large document about half way thru my pictures go blank.

Posted: 08 Sep 2013 11:22 PM PDT

In Office 2013, Microsoft Office Word, Windows 8, in a large document about half way thru my pictures go blank. I just downloaded Office 2013 on my new computer and am having this problem. I'll call it my Office 2013, Microsoft Office Word, Windows 8, large document, blank pictures problem. About half way thru my long document my pictures turn into blank spaces. They are still there, it just won't show them. When I go back to my Word 2007 on my old computer, no problems. I have played with the settings but found no solution. Does anyone know of a fix or solution to this Office 2013 Word problem?

Help for Office Web Apps

Posted: 08 Sep 2013 09:46 PM PDT

Hello All,

My company is going to use Office Web Apps, but there are some issues we consider before implement it.

- Can Linux workstation access Office Web Apps with web browser?
- Does Office Web Apps support open the files (Word, Excel, PowerPoint) with password protection?
- Does Word in Office Web Apps support Mail Merge feature?

Could you please help me on these questions? And besides, is there any solution from Microsoft for using Ms Office on Linux workstation?

Thank you very much.

Khiet Manh.

Editing an existing Bible text in Microsoft Word

Posted: 08 Sep 2013 09:11 PM PDT

In Microsoft Word, I wish to change 100's of words in order to create my own Bible version.

So I decided all the unique words I'd like to change and I created an excel file containing 2 columns:
Column A. The words to be removed.
Column B. The new words to be inserted.

Here's what my work looks like:

Column A  Column B

God          Elohim
heaven      shamayim
earth         aretz
waters       mayim
good         tov

Besides making all the changes, I wish to put footnotes at the bottom of every page, accounting for all such changes.

For example:
The word "Elohim" now replaces the word "God".
So I would like to have it underlined like this: In the beginning Elohim created the heavens and the earth.
And then have a footnote at the bottom of the page, showing that the original word was "God".
(Note: I only want underlined the first occurrence of the word "Elohim" in each page, and I don't want the little footnote number 1 beside it).

Here's a picture of my desired "before and after":

Questions:

Is there any other way to do this besides Find/Replace each word?
Because the whole issue is, I want to account for all the changes as footnotes *once per page) and also as a glossary in the back of the book.

How can I change the first occurrence of the word "God" into the new word "Elohim", then create the appropriate footnote, and then have MS Word do the same for every occurrence thereafter, as well as put that same footnote on every page (only once per page) only where it's needed?

Should I try doing all this by creating first a concordance file? And then, is there some way of creating automatic bookmarks? cross-references? footnotes? .. so I can also render my glossary as an Index in the back of the book?

Or is it there a way with macros to make all my changes and footnotes?
And then for the glossary, is there a way to gather all the footnotes and list them alphabetically in the back of the book?

Thanks!
Alex

Missing font

Posted: 08 Sep 2013 08:49 PM PDT

I like my Office subscription. Yet I am disappointed that the New Times Roman is no longer a default font with the Word 2013. A lot of documents have New Times Roman. When you paste an excerpt of text into a document-a thesis or essay- perhaps a print quote or text citation; there you have why I am teed-off! It gets all jacked up and looks like you did not make a sufficient effort to prepare your document. It appears as if you placed material without correctly formatting. Part of the text looks one way and then the other. Most of the instructors I know want your work to be commensurable with college level presentations. So now I need to re-type everything that is in New Times Roman!!Grrr. So yes, I need to spend extra minutes preparing my assignments. You said this was for students and then you pull a stunt like this. Thanks a bunch for all your professionalism.

Normal.dotm changes not reflected when opening a new document

Posted: 08 Sep 2013 08:02 PM PDT

Hi, all.  Thank you in advance for all the help you will provide.

 

I am using Office 2007 and in Word I somehow managed to change Normal.dotm so the standard template is not used.  Most notably, the header has disappeared.  I found the Normal template, opened it and inserted a header, being sure not put the prompt in.  I made certain I also checked the box indicating this template should be used when new documents are opened.  Then I saved the Normal.dotm.  Still, when I open a new document, the header is not there, yet if I open Normal.dotm the header appears.  After working on this on and off for months, it would not be an overstatement to say I frustrated.  I have tried deleting the Normal.dotm and opening a blank document, but that didn't work either. 

 

Again, thank you for your help!

Problems accessing my account info

Posted: 08 Sep 2013 05:06 PM PDT

I can't remember my account name to access my Office online account in order to use it on my laptop? I recently purchased a laptop that has Windows 8 on it.  My PC has Win XP Home Edition.

Can't save new documents or "save as" in Word 2010?

Posted: 08 Sep 2013 04:47 PM PDT

When trying to save a new document or "save as" from an old document, my screen turns into this:


http://i.imgur.com/i2sGX0x.png

 


It's not frozen; it just won't save a new file. I've tried restarting, repairing Office from the Control Panel, and running in safe mode. I can overwrite old documents, but I can't create new files. Also, looking at the other Office programs, it seems I can't create new documents in any Office program either.  I'm running Windows 7 64-bit and Microsoft Office Home and Student 2010.

 

Any help would be appreciated,

Mark

HELP!! Trying to get Apex color scheme in Microsoft Word 2013

Posted: 08 Sep 2013 04:26 PM PDT

Hello,

 

I am doing an assignment for Microsoft Office class. The assignment requires that I change the theme to Apex color scheme. However I have Office 2013 and the book is for 2010. I do not have apex, nor any other color scheme that the book is asking for. I never had 2010 so I cant get the color scheme from there. I managed to make a new scheme for a previous assignment by finding the RGB numbers for each accent.

 

Does anyone have the rgb numbers for the Apex color scheme from Word 2010?

 

 

Thank you

 

 

Riverpoint Writer

Posted: 08 Sep 2013 03:49 PM PDT

I need "Riverpoint Writer" for my laptop (windows 8) and Tablet (windows RT). Where can I find this application?

 

Robert

2003 Exchange Reports Question? - Microsoft Exchange

2003 Exchange Reports Question? - Microsoft Exchange


2003 Exchange Reports Question?

Posted: 31 Mar 2005 05:43 PM PST

See MessageStats: http://wm.quest.com/products/messagestats

Sample screenshots on that site.

--
David Sengupta M.T.S., B.Sc., MCSE, Exchange MVP, CCA
Ottawa, Canada

"Ed" <microsoft.com> wrote in message
news:com... 


Exchange 2003 install hangs on "MSExchangeIS" startup.

Posted: 30 Mar 2005 10:59 PM PST

Sounds like it's good to go. You might want to run ExBPA against it just
to be sure.
http://www.microsoft.com/exchange/downloads/2003/exbpa/default.mspx
--
Steve Antonio, MCSE/MCSA
Microsoft Exchange Support

This posting is provided "AS IS" with no warranties, and confers no
rights. Use of included script samples are subject to the terms specified
at http://www.microsoft.com/info/cpyright.htm
Note: For the benefit of the community-at-large, all responses to this
message are best directed to the newsgroup/thread from which they
originated.


com wrote in news:1112323983.269966.160850
@f14g2000cwb.googlegroups.com:
 



What is the OWA time out?

Posted: 30 Mar 2005 03:04 PM PST

Cookie authentication timeout is discussed in this article:

http://support.microsoft.com/?id=830827

--
Neil Hobson
Exchange MVP

For Exchange news, links, and tips, check:
http://www.msexchangeblog.com

"Clayton Sutton" <com> wrote in message
news:phx.gbl... 


C drive getting full

Posted: 30 Mar 2005 02:29 PM PST

Thanks,

Looks easy enough. I won't be back in that office until next Wed, so I'll
try it then.

Tom

"John Oliver, Jr. [MVP]" wrote:
 

cannot receive email

Posted: 30 Mar 2005 09:55 AM PST

Thanks for responding Clayton. Yes, we have an alias in the external DNS
zone for the OWA server and an MX record has been setup.

"Clayton" wrote:
 

Email received at server, missing from mailbox

Posted: 30 Mar 2005 09:41 AM PST

Yes, but being on a cluster I'm not sure if there are multiple badmail
folders. I did a search on the virtual server for "badmail" and checked
every directory, all of them were empty and not modified since date of
install.

"John Oliver, Jr. [MVP]" wrote:
 

Wireless email push

Posted: 30 Mar 2005 08:47 AM PST

Great, thanks. One last question: What are the advantages/disadvantages of
using this technology vs. blackberry?

"Phil" wrote:
 

Exporting complete address book through Outlook.

Posted: 30 Mar 2005 07:45 AM PST

John Oliver, Jr. [MVP] wrote: 

Thanks ;)

Exchange 2003, ISA 2004 and Message Screener

Posted: 29 Mar 2005 11:35 PM PST

On Wed, 30 Mar 2005 17:19:04 -0800, "Ziguana"
<microsoft.com> wrote:
 
Then my original guess fits.

Migration dilemma - 2 Orgs, one Domain

Posted: 29 Mar 2005 12:32 PM PST

Unfortunately, we'll now need to install into the AD Tree of our parent
company to merge orgs. Both new and old servers will be Exchange 2000.


"Andrew Sword [MVP]" <microsoft.com> wrote in
message news:com... 
are 
domain 

same 
mail 
any 
are 
through. 


monitoring email

Posted: 29 Mar 2005 07:55 AM PST

2003 is the version I have. And you answered what I needed thanks for your
help.

"Joemonkey" wrote:
 

Custom Delivery Reports

Posted: 29 Mar 2005 06:47 AM PST

On Tue, 29 Mar 2005 15:54:13 -0600, "Eric Dreksler" <ericd AT
accessoneinc DOT com> wrote:
 

Ooh, my bad. I missed that from the original post. In your case you
might need to deliver to a mailbox and then select a DL as an
alternate recipient (delivering to both the recipient and alternate)
Set the rule on the mailbox and set a mailbox management policy to
flush the mailbox out regularily so it doesn't get clogged.

Calender sharing in OWA.

Posted: 24 Mar 2005 12:27 AM PST

There is a way to do this. I've been looking at it but don't have any
experience with it yet.

Take a look at http://www.exchangegroupcalendar.com/

~K
"TonyV" <microsoft.com> wrote in message
news:com... 


Have I got a pirate copy? - Microsoft Office forums

Have I got a pirate copy? - Microsoft Office forums


Have I got a pirate copy?

Posted: 13 Apr 2005 07:35 AM PDT


On 13-Apr-2005, "Miss Perspicacia Tick" <com> wrote:
 

Thats what I thought. However the person I spoke to only asked me for the
first 4 numbers of the long number you input when activating?

Paul.

Are Custom Install Wizards backward compatible?

Posted: 11 Apr 2005 01:37 PM PDT

Hi Tom,

To add one bit to Sue's reply you can download the
Custom Installation Wizards for Office 2000, Office XP
and Office 2003 from the Office Resource Kit (ORK) for each
version.
http://microsoft.com/office/ork

========
<<"Tom" <microsoft.com> wrote in message news:com...
Can I use the Office 2000 Resource Kit Custom Installation Wizard to
customize an installation of Office 2000? >>
--
Let us know if this helped you,

Bob Buckland ?:-)
MS Office System Products MVP

*Courtesy is not expensive and can pay big dividends*

Office 2003 Editions explained
http://www.microsoft.com/uk/office/editions.mspx


download wordperfect for windows XP?

Posted: 10 Apr 2005 09:39 PM PDT

Thank you soooo much! Now that's the kind of help I was hoping to receive!

"John Thomas Smith" wrote:
 

product key not available

Posted: 10 Apr 2005 08:23 PM PDT

bushp04,
Refer to your previous post.

Chris Schatte

use the Office Online web based newsreader here:
http://www.microsoft.com/office/community/en-us/default.mspx
In Office System 2003 applications:
Help/Assistance Pane/open Communities

"bushp04" wrote:
 

Activating on a new machine

Posted: 10 Apr 2005 12:49 PM PDT

Pam,
OEM is an abreviation for Original Equipement Manufacturer. Buy a new
computer with Windows or Office installed and your support comes from the
computer manufacturer not Microsoft. They (OEM) are reselling a produced
product (by another company) to you. Usually at a cheaper price than retail
versions.

Chris Schatte

use the Office Online web based newsreader here:
http://www.microsoft.com/office/community/en-us/default.mspx
In Office System 2003 applications:
Help/Assistance Pane/open Communities


"Pam" wrote:
 

Restoring HOME key defalt use

Posted: 08 Apr 2005 04:01 PM PDT

Hi Bob, Thank you for the help! It worked! YEA! I'm not sure why- but it
worked! Thanks again! Linda in Toledo

"Bob Buckland ?:-)" wrote:
 

I cant get internet explorer to download a thing please help.

Posted: 08 Apr 2005 11:31 AM PDT

net wrote: 

1) There is no such thing as "Windows Office XP" Office is *NOT* part of
Windows.
2) And IE is *NOT* part of Office.
3) Please repost in an IE group.

--
In memory of MS MVP Alex Nichol: http://www.dts-l.org/


Office 2003 upgrade on second computer

Posted: 08 Apr 2005 12:55 AM PDT

I hadn't thought of that. I'm pretty sure I do. Thanks!

"Lanwench [MVP - Exchange]" wrote:
 

Can I put Excel 2000 on a computer with XP?

Posted: 07 Apr 2005 09:45 AM PDT

That's not what Carie Frisch on here told me. Even though I PAID FOR the
discs that my OEM loaded on my old PC, I'm being told that "when your old PC
dies, your Office 2000 license dies with it." Does that sound fair and
equitable to you?

"You certainly can!" wrote:
 

Install Office 2003 over 97

Posted: 06 Apr 2005 04:47 AM PDT

they shall be almost completely separate. You may uninstall it but you can
even leave the old applications on your system if you need it for
compatibility reasons. (Except Outlook)

hth
g
"John" <com> wrote in message
news:com... 


Installing OFFICE: "Error opening installation log file"

Posted: 03 Apr 2005 01:29 AM PST

well, the problem was with the windows xp installation: when upgrading from
windows2000, i defined only a regular member account, without redefining the
administrator account.
it is so happens that the log file can be accessed only through the
administrator account, and only then the office xp installation succeeded.
what bothers me is why those people in microsoft didn't give their hand when
they could and should. :-(

"nevo" wrote:
 

How to synchronize with office administrative install point

Posted: 01 Apr 2005 12:06 PM PST

This is a User Profile logon script (under \\computer\NETLOGON\), which
is set using AD user/computer management console. For each user it is
the same logon script.