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.

Microsoft Word - how do I preview fonts all at once. without have to select each one.

Microsoft Word - how do I preview fonts all at once. without have to select each one.


how do I preview fonts all at once. without have to select each one.

Posted: 08 Sep 2013 02:35 PM PDT

I would like to see what a font looks like without having to select each and every one. In other words I would like to see what the font looks like as I scroll down the list with out selecting a font. If I am looking for a special looking font I would have to start at the top and click each one just to see what it looks like. This would be very time consuming. There must be a way to see what they all look like then select which one you like. Does anyone else know how to do this?

 

how to wrap a group of text and shapes in order to copy it all together?

Posted: 08 Sep 2013 11:30 AM PDT

How can i copy all of this together. That way i don't have to retype all of them i just need to hit paste when i want another one. When i hit paste i would like to have EXACTLY what is in that picture. In the picture is a texbox, text,and shapes. The textbox is surrounding all of the text and shapes. So is there a way i can just copy the textbox and have everything copy. Thanks for your help

Word 2007 Copy and Paste/Clipboard Issue

Posted: 08 Sep 2013 05:31 AM PDT

If I copy text, highlight then right click and select copy, from a webpage or other document, then open Word and paste, I get a large black irregular shaped dot as a result; no text. If I open Word first, then copy and paste, everything is normal.

 

This issue has been going on for some time. I don't recall when it started. There must be some conflict between text that exists on the clipboard before you open the Word application that doesn't exist if you copy to the clipboard after the Word application is started. 

 

My OS is Win 7 Pro x64 SP1.

 

Is there a fix for this issue?

 

Regards

Unable to open Word 13 documents

Posted: 08 Sep 2013 05:14 AM PDT

I have Windows 8 on my new laptop on which I installed MS Office Professional Plus 2013 at the outset.  When I try to open documents, either those transferred from my USB stick from my previous laptop, or those created on this laptop and this version of MS Office Word, I am given the notification that there is a problem with the file's contents and that "the file is corrupt and cannot be opened".   I have been backing up my files onto a new USB stick and am only able to access my documents from this stick.  I have attempted to overwrite files on the hard drive with the files on my USB stick and have been able to access them from the hard drive for a short period of time, but it is not long before I get the corrupt notification.  Is it the case that MS Office is not compatible with Windows 8?  

Any advice would be very much appreciated.  Thank you.

Mail Merge - To a Word Table on a Single Page

Posted: 07 Sep 2013 10:15 PM PDT

I am trying to Mail Merge multiple records using data extracted from an Excel 2010 Spreadsheet into the body of a table in Word 2010.

 

I want the records to "list" in the Word table on a single page, but everything I try ends up with 1 page and 1 table per record (multiple pages) instead of all on the same page in the same table.

 

Under the "Start Mail Merge", I have tried both Directory and Normal Word Document, but neither gives the outcome I'm trying to get.

 

Can anyone suggest what I might be doing wrong, please?

 

Thanks!

Mim

Line Connector

Posted: 07 Sep 2013 07:56 PM PDT

Having problems with the line connector in that I can not get a line to attach to a shape / object. I'm using the following method in Word 2013.

Insert> Shapes> Rectangle 

I do this twice to create 2 rectangle on the page. To create a line, I do the following

Insert> Shapes> Elbow Connector (4th from the left under lines)

I hover my mouse over one of the rectangles but nothing happens, I see no boxes to attach it too and I can insert A line of any length, but it won't move with the shapes. If I move the shapes, the line stays where it is. I am sure I'm missing something silly, but going through all of the options I can't see anything obvious. Please help?

EDIT: I've gotten this to work in Excel, easily. If I try to copy / paste this into Word everything works except it doesn't maintain the line connection. Is this feature even applicable in Word 2013 still?

what is a php file and how can I open it

Posted: 07 Sep 2013 07:45 PM PDT

Hi, I have a file on my desktop, which I have apparently saved myself, but for the life of me, I can't remember what it is.   I think it might have to do with downloading pictures to or from my cell phone, but I am not sure. The file looks like a faded document, and at the bottom says: photo.php. I tried downloading some aps recommended by Windows 8. This opens it  but all I see there is a bunch of what I call gibberish.

 

I would like to know what does a php file usually refers to, and if there is a way to open it.

I also would like to know if there is a software I can use to change extension files, in photos, audio and videos. I use to use NHC, but that only worked on videos.

 

Not sure of category of topic, so I chose at random. Sorry

 

I have Windows 8, IE10, Office 2010 and AVG free,

 

Your help is much appreciated...Edie

i want to have an arrow that is the width of a line that I can bend to show a jump on a numberline

Posted: 07 Sep 2013 04:36 PM PDT

I am creating number lines that show how to add and subtract. I would like an arrow the width of a line that I can bend between two points on a number line to show a jump from one number to another. The arrows that are that size are straight. 

E-mail file in Word 2007

Posted: 07 Sep 2013 04:21 PM PDT

Cannot E- mail Word file as an attachment, says to connect to Microsoft Exchange, running XP with Micro. Word 2007, any help out there?

missing AppVIsvStream.dll file

Posted: 07 Sep 2013 04:11 PM PDT

I've tried opening an MS Word file, but am getting an error message that the AppVIsvStream.dll file file is missing.  This is probably due to running ARO registry cleaner but trying to reverse the changes has not helped.

Any suggestions?

Access can't start because there is not license for it on computer - Microsoft Office forums

Access can't start because there is not license for it on computer - Microsoft Office forums


Access can't start because there is not license for it on computer

Posted: 04 Apr 2005 12:41 PM PDT

Hi Pat,

It's a small bug, you can fix it with the steps here:
http://support.microsoft.com/kb/141373

=====
<<"UnAccessable Pat" <UnAccessable Pat @discussions.microsoft.com> wrote in message
news:com...
I purchased Office 97 Professional to install on an older computer I
purchased from my company as an addition to my home office. When installing,
everything installs and runs except Access. I keep getting the message
Microsoft Access can't start because there is not license for it on this
machine. What can I do to get the computer to open Access? The computer is
a Dell Deminsion V333C (1999). >>
--
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


locked out

Posted: 03 Apr 2005 10:25 AM PDT



"RD" wrote:
 

You have a trial version and your trial period has expired. To continue use
you must now pay to convert the trial to the full version (as you would have
been told when you attempted to start a new document).

Office 2003 asks for Office 2000 Small Business CD

Posted: 02 Apr 2005 01:11 PM PST

All OK now. You definitely pointed me in the right direction, but it was
more complex. When I was logged on as me, the list of removable programs in
the control panel was OK - no remaining Office 2K listings. When I l;ogged
on as my wife, both Office 2000 SR-1 and the Disc2 Small business additions
were listed. I am supposing there were duplicate registry entries maybe from
when I upgraded from ME to XP/Home? Anyway, uninstall wouldn't work because
of missing msi files. After a little research on the microsfot site, I
figured out what they were and copied them from the CD's in to the
directories they were asking for them in. All I had to do then was hit
ignore a gazillion times when uninstall went looking for files allready
uninstalled.

The easy way would have been to directly edit the regsitry, but I don't know
enough XP internals to do that with any confidence. This worked w/o bad side
effects.

Again, thank you for the pointer!
-Eric

"Peter Foldes" wrote:
 

patch package error???

Posted: 02 Apr 2005 12:35 PM PST

By damaged this is waht I mean. My office programs still show up when I go to
"start, programs", but when trying to open it up starts up windows installer.
The a: drive chatters twice and then this appears " The Windows installer
failed to install the program associated with this file. Contact sys admin."
When viewing installed programs through "add/remove programs", it doesn't
show any of the twenty or so software titles that are actually installed. Do
you know what I mean? Can't get the old version uninstalled and I can't
reinstall a new one. What to do????

"Chris Schatte" wrote:
 

Can you deploy a customized office instillation through a GPO

Posted: 01 Apr 2005 10:53 AM PST

Great, I will check on Monday, thanks for the tip, very helpful!!! I'll let
everyone know what I find.

Thanks
Joe

"Sue Mosher [MVP-Outlook]" wrote:
 

Under XP I need to install previously installed software

Posted: 01 Apr 2005 07:37 AM PST

OEM programs live and die with the computer on which they came and are not
transferrable. You will need to obtain a retail version of Office for your
new computer.

Note to all - if you get Office OEM, you are getting a far less valuable
package than the slightly more expensive retail version since the OEM is
tied to that one machine only.


--
Milly Staples [MVP - Outlook]

Post all replies to the group to keep the discussion intact. Due to
the (insert latest virus name here) virus, all mail sent to my personal
account will be deleted without reading.

After furious head scratching, Geoff asked:

| I owned a Gateway PC running ME with some applications pre-installed
| but without source CDs or install programs. I now own a Dell PC and
| have copied all the old installed directories and dot exe files
| across to my new Dell which runs XP SP2.
|
| How can I install this software under XP without the install
| programs? I consider that I own the software concerned and so am
| entitled to obtain ongoing value in spite of swapping PCs.


How to Repair Office Installation w/o Program Launch?

Posted: 31 Mar 2005 09:59 PM PST

You should have done a repair install of XP. Check your HDD in Explorer, I'll bet that you find 2 Windows folders and that is why you had to reinstall all of your programs.

My suggestion would be to save all data to removable media and start over.

--
Just my 2¢ worth,
Jeff
_________In response to________
"ModernDriver" <microsoft.com> wrote in message news:com...
|I had to reinstall Windows from CD after removing the Hotfixes corrupted the
| files. Installed Service Pack 2 and all subsequent critical updates. All MS
| Office Standard programs (excel, word, Powerpoint) on my system failed;
| startup screen said "unknown user" and "unregistered version". I need to
| detect and repair my Office installation without accessing the program; i.e.,
| the programs would not let me access the help tab to even select the detect
| and repair option. Moreover, since I could not access the help tab, I could
| not get the product ID number required to submit a new issue to technical
| support. Consequently, Windows XP, although running smoothly again, has left
| me in a pretty pickle. All programs on my system had to be re-run as though
| they had never been registered.
| Upon trying to detect and repair the MS Office Standard suite from CD,
| the option did not even come up; it asked me for the poduct key, which I
| have, since it is a full version and not an upgrade. It then asked me for
| the location of a qualifying product AS IF it were and upgrade. So I
| indicated the drive the master (original holographic) CD was in, but the
| Windows Installer returned with "error 1608: could not find a qualifying
| product." After that, the program closed down and installation failed.
| Whether I started with a new installation or not did not matter, both errors
| came up asking first for a "qualifying product."
| Please tell me there is a detect and repair option on the Microsoft
| Website, since I cannot access it from my disk, nor, as I mentioned, can I
| get the product ID from the Help tab in any of the office programs, since the
| programs think I have an unregistered version and close down before I can
| click on anything.
| I bought the program new in the sealed box, yet I am again stranded
| because of Microsoft's failure to consider such a scenario. I cannot even
| get the help I need because the product ID number cannot be found without
| launching the affected program. I have the disc in my CD-ROM drive and was
| just looking for the link that could verify it and ask me for the Product
| Key, but alas, have not found anyway to repair my Office Installation without
| a program launch. A search on the MS website only pointed to incidents that
| tell me what I already know; e.g., open the program and click on the help
| tab, then select detect and repair. Duly noted, but as I mentioned, what is
| a registered user supposed to do if the detect and repair option is not
| available?
| The detect and repair option should be part of the CD, and not only
| accessible from the program. It should be a separate utility on the program
| disk to provide the required help in these situations.
| I hope that microsoft software engineers will think about this in the
| future. Not all users should be treated with the suspicion that they have a
| pirated copy of Microsoft's programs.

I am unable to copy and paste and am unable to figure out why, wh.

Posted: 31 Mar 2005 06:57 AM PST

Suggest you also figure out how to post.

How to Compose a Good Newsgroup Post
http://dts-l.org/goodpost.htm

How to Act Smart on Usenet
http://www.catb.org/~esr/faqs/smart-questions.html

Getting Your Post Noticed - and Answered
http://www.microsoft.com/presspass/features/2001/Mar01/Mar27pmvp.asp

How Not to Get Help in Newsgroups
http://users.tpg.com.au/bzyhjr/liszt.html

Otherwise, you might as well try here:

Psychic Friends Network
(800) 592-7827

--
In memory of MS MVP Alex Nichol: http://www.dts-l.org/
"tfreeman" <microsoft.com> wrote in message
news:com... 


Can I use my Office XP upgrade CD on a 2nd home PC?

Posted: 30 Mar 2005 10:41 AM PST

ScottyK wrote: 

No. You need one for each computer, AFAIK.
If you have licensing questions regarding *any* MS product, call MS directly
to get the straight dope.


Voulme Office Proffesional 2003 install

Posted: 29 Mar 2005 07:55 PM PST

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

How was the software originally deployed? Group Policy? Running setup from
the network? Details? With those, maybe we can offer some real answers.
How/why do you have a volume license verision of Office 2003 when you only
have 3 pc's to install to? That seems rather interesting as well...

glenn fincher


InfoPath Activation: Invalid Product Key no chance to find a phone

Posted: 29 Mar 2005 08:45 AM PST

Thanks for your effort. Unfortunately it did not work out. I finally found a
phone number and talked to MS (about 6 different departments) for about 3
hours (no kidding) and finally they figured out that they can do nothing for
me and that I have to order it again :-(

Cheers,

Tom

"Bob Buckland ?:-)" wrote:
 

Project 2003 install broke Word/Excel 2000?

Posted: 29 Mar 2005 06:30 AM PST

Hi Bob,

Thanks for posting back so quickly.

I was of the idea that the recommended course of action would be something
like that below but it was as much looking for clarification that installing
only a single app of Office 2003 [in this case Project] could/would 'break'
other apps [in this case Word/Excel] that were of the Office 2000 variant.

I take it that installing a single Office 2003 app *can* cause such issues
in other apps in Office 2000 then?

Regards,



David





"Bob Buckland ?:-)" <75214.226(At Beautiful Downtown)compuserve.com> wrote
in message news:%phx.gbl... 


How to move the dir MSOCache to another location ?

Posted: 29 Mar 2005 05:46 AM PST


"Ken Tucker" <com> wrote in message
news:d2bm8a$sc4$01$t-online.com... 

At the bottom of:


MSOcache

Local Installed Resources:

http://support.microsoft.com/?kbid=825933





There is a tool for moving the MSOCache folder. However, this is not a
temporary folder so moving to C:\ is IMO a good idea. If you want to get
rid of the folder, there is a setting in Disk Cleanup to properly do so.



Don


Fire the software architect. Importorting Outlook contacts ...

Posted: 28 Mar 2005 09:23 AM PST

Fwray wrote: 

Hmmm - well, I'm pretty sure I'd remember if I'd designed Outlook.

This is a peer support group. If you wish to speak to MS directly, you need
to contact them directly.

If you need help with something, please describe the *exact* problem you are
having, and outline what you've tried already. Your post makes it very
difficult to understand what exactly you are havng problems with.

NB: Post politely and succinctly if you wish for free support in these
newsgroups, and you are sure to get a lot of assistance. Ranting may make
you feel better, but it doesn't help anyone know how to help you - or make
them terribly inclined to do so. ;-)


why 2nd disc does not load

Posted: 27 Mar 2005 08:37 PM PST

jams wrote: 

Well, gee, ain't that too bad....

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


Trying to install M/S WS 2005-doesn't show Iaccept button to loa.

Posted: 27 Mar 2005 12:05 PM PST

Hi Ram,

While MS Works Suite includes MS Word 2002, it's
not a part of the MS Office product family.

You may want to also post this in the MS Works group
(link below). Check to see that you're logged in
as an Administrator when setting up the software

=======
<<"Ram27" <microsoft.com> wrote in message news:com...
I'm trying to install M/S Works Suite 2005....License aggrement comes up, but
"I accept button" does not show?

Any ideas?


TIA>>
--
LLet us know if this has helped you,

Bob Buckland ?:-)
MS Office System Products MVP
*courtesy is not expensive and can pay big dividends8

A. Specific newsgroup/discussion group mentioned in this message:
news://msnews.microsoft.com/microsoft.public.works.win
or via browser:
http://microsoft.com/communities/newsgroups/en-us/?dg=microsoft.public.works.win

B. MS Office Community discussion/newsgroups via Web Browser
http://microsoft.com/office/community/en-us/default.mspx
or
Microsoft hosted newsgroups via Outlook Express/newsreader
news://msnews.microsoft.com



Office Pro Installation File not found

Posted: 26 Mar 2005 05:23 PM PST

In Browsing through the rest of the posts here and trying the ideas others
have replied, this seems to be a common problem in that one or more of the
..cab files is either corrupted, will not be recognized etc. After Posting my
initial note here, I emailed Microsoft and they are sending me another copy
out. In the meantime, I have found a resolution to my particular file problem
which may or may not help some of you others out here having the same
problem. The .cab file that I am having problems with is a common file
between the "Standard" and "Pro" versions. Not all the .cab files included
with each version are the same, so if you do try this it may or may not work
for you. Although resourseful, this is not what some of you would be likely
to call a viable solution, but this is what I have done. I copied all of the
files that will copy from the cd to a share file on my hard-drive. I then
downloaded the Office 2003 Standard Edition Trial Version, installed but
prior to the installer clearing all the temp files created by the
self-extracting .exe, copied the one .cab file into the previosly copied
share folder. I then ran the installer from the local folder instead of the
cd and was able to install the entire Pro package over the standard and all
seems to be fine. I will be re-installing when I recieve the new CD, just to
make sure that all is good, but this has me back up and running and working
on my ongoing projects.

"Peter Foldes" wrote:
 

Office 2003 Std. Trial Ver. vs Prof. Edition later

Posted: 25 Mar 2005 06:07 AM PST

Bob,

Thanks.

"Bob Buckland ?:-)" wrote:
 

Office 2003 New Office Document Shortcuts are missing

Posted: 24 Mar 2005 07:41 PM PST

Thanks Bob. - I was able to install the shortcuts as you suggested.

"Bob Buckland ?:-)" wrote:
 

Error Message: "An extension failed to initialize."

Posted: 24 Mar 2005 07:17 AM PST

Chris,

Thanx again for the reply. No matter what I did, life was not "all happy"
for me... it just wouldn't cooperate! So, I claimed ownership of my
harddrives, deleted registry keys pertaining to Outlook, then rebooted, then
reinstalled... seems to be "all happy" now... LOL! ;-)

Thanx for trying, I appreciate it.

Terrae

"chris" wrote:
 

Windows Service Pack 2 CD at installation?

Posted: 23 Mar 2005 10:49 PM PST

Gotcha. Contact Insignia to get a CD, or to get support for the system they
installed. OEMs are supposed to provide you support.

--
Susan Ramlet
MVP - Office

Please reply to the newsgroups where others may benefit.


"Liz" <microsoft.com> wrote in message
news:com... 
All 
fine on 
know 


Create an install of Office 2003 with SP1

Posted: 23 Mar 2005 11:35 AM PST

THanks this will help a lot.

"glenn fincher @ gmail.com>" wrote: